Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ECO-2422] Remove arrow in connect button #428

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading