Skip to content

Commit

Permalink
Remove arrow in connect button
Browse files Browse the repository at this point in the history
  • Loading branch information
CRBl69 committed Nov 28, 2024
1 parent 3a9a68f commit 7b825ce
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ export const MobileMenu: React.FC<MobileMenuProps> = ({
className="w-full"
mobile={true}
onClick={subMenuOnClick}
arrow
/>
<AnimatePresence>
{subMenuOpen && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const ButtonWithConnectWalletFallback: React.FC<ConnectWalletProps> = ({
children,
className,
onClick,
arrow = true,
arrow = false,
forceAllowConnect,
}) => {
const { connected, account } = useWallet();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const ClientVerifyPage = () => {
<span ref={backRef}>Back</span>
</motion.div>
)}
<ButtonWithConnectWalletFallback arrow={false}>
<ButtonWithConnectWalletFallback>
<div className="flex flex-row uppercase mt-[8ch]">
<span className="px-2.5">{"{"}</span>
<span ref={ref} onMouseEnter={replay} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const ClientVerifyPage = ({
<span>Disconnect Wallet</span>
</motion.div>
)}
<ButtonWithConnectWalletFallback forceAllowConnect={true} arrow={false}>
<ButtonWithConnectWalletFallback forceAllowConnect={true}>
<div className="flex flex-col uppercase mt-[30ch] gap-1">
<div>
Wallet address:{" "}
Expand Down

0 comments on commit 7b825ce

Please sign in to comment.