Skip to content

Commit

Permalink
prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvel-Ib committed Oct 26, 2023
1 parent ce59d90 commit 70462c0
Show file tree
Hide file tree
Showing 2 changed files with 241 additions and 242 deletions.
5 changes: 2 additions & 3 deletions frontend/app/src/people/utils/ConnectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,8 @@ export default function ConnectCard(props: ConnectCardProps) {
const showAssignModal = () => setAssignModal(true);

const qrString = person && person?.owner_pubkey ? makeConnectQR(person?.owner_pubkey) : '';
const ownerPubkey = person && person?.owner_pubkey ? `${person.owner_pubkey}` : ''
const routeHint = person && person?.owner_route_hint ? `:${person.owner_route_hint}` : ''

const ownerPubkey = person && person?.owner_pubkey ? `${person.owner_pubkey}` : '';
const routeHint = person && person?.owner_route_hint ? `:${person.owner_route_hint}` : '';

return (
<div onClick={(e: any) => e.stopPropagation()}>
Expand Down
Loading

0 comments on commit 70462c0

Please sign in to comment.