Skip to content

Commit

Permalink
Fixed not showing balance on modal and profile on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
luloxi committed Dec 15, 2024
1 parent f243239 commit 39f7b93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/nextjs/app/profile/[address]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const ProfilePage: NextPage = () => {
<Address address={address} />
<div className="flex flex-row items-center gap-2">
<span>Balance: </span>
<span className="hidden lg:flex items-center justify-center gap-1 text-blue-600 font-bold">
<span className="flex items-center justify-center gap-1 text-blue-600 font-bold">
<Image src="/usdc-logo.png" alt="USDC" width={20} height={20} className="inline-block" />
{formattedUsdcBalance}
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const AddressQRCodeModal = ({ address, modalId }: AddressQRCodeModalProps
<div className="flex flex-row justify-around gap-3 items-center mt-4">
<div className="flex flex-row justify-center items-center px-2 gap-2 rounded-lg bg-yellow-500 text-black text-xl">
<span className="font-bold">Balance: </span>
<span className="hidden lg:flex items-center justify-center gap-1 text-blue-600 font-bold">
<span className="flex items-center justify-center gap-1 text-blue-600 font-bold">
<Image src="/usdc-logo.png" alt="USDC" width={20} height={20} className="inline-block" />
{formattedUsdcBalance}
</span>
Expand Down

0 comments on commit 39f7b93

Please sign in to comment.