Skip to content

Commit

Permalink
fix: Build fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
admsk2 committed Aug 27, 2024
1 parent 865d3a2 commit b51f468
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Navbar/NavbarButtons/ProfileButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export const ProfileButton = () => {
const theme = useTheme();
const { account } = useAccounts();

const imageSrc = account?.address ? `https://effigy.im/a/${account?.address}.png` : '/default_effigy.svg';
const imageSrc = account?.address
? `https://effigy.im/a/${account?.address}.png`
: '/default_effigy.svg';

return (
<ProfileButtonBox onClick={() => navigate(JUMPER_LOYALTY_PATH)}>
Expand Down

0 comments on commit b51f468

Please sign in to comment.