Skip to content

Commit

Permalink
lint: prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maschad committed Dec 18, 2024
1 parent b88d1fc commit e7ce565
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions frontend/src/components/modals/UnsupportedWalletsNoticeModal.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
export const UnsupportedWalletsNoticeModal = ({ isOpen, onClose }: { isOpen: boolean; onClose: () => void }) => {
export const UnsupportedWalletsNoticeModal = ({
isOpen,
onClose,
}: {
isOpen: boolean;
onClose: () => void;
}) => {
if (!isOpen) return null;

return (
Expand Down Expand Up @@ -49,11 +55,12 @@ export const UnsupportedWalletsNoticeModal = ({ isOpen, onClose }: { isOpen: boo
letterSpacing: "0.4px",
}}
>
Note: Gasless transactions are currently only supported for the Burner wallet & Fuelet Wallet.
Note: Gasless transactions are currently only supported for the Burner
wallet & Fuelet Wallet.
<br />
<br />
Support for other wallets is coming soon. If you use these other wallets, you can still play the game by paying gas fees
yourself.
Support for other wallets is coming soon. If you use these other
wallets, you can still play the game by paying gas fees yourself.
</div>
<button
onClick={onClose}
Expand Down

0 comments on commit e7ce565

Please sign in to comment.