Skip to content

Commit 3a5c2d5

Browse files
authored
feat: change wallet visible logic & adjust styles (#1428)
1 parent 7b76647 commit 3a5c2d5

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/components/Header/desktop_header.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ const HeaderContainer = styled(Box)(({}) => ({
5858
const MenuLinkButton = styled<any>(Link, { shouldForwardProp: prop => prop !== "dark" })(({ theme, dark }) => ({
5959
fontSize: "1.8rem",
6060
fontWeight: 400,
61-
paddingLeft: "25px",
62-
paddingRight: "25px",
6361
marginLeft: "4px",
6462
marginRight: "4px",
6563
lineHeight: "65px",

src/hooks/useShowWalletToolkit.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ const useShowWalletConnector = () => {
55
const pathname = usePathname()
66

77
const showWalletConnector = useMemo(
8-
// () => pathname.startsWith("/developer-nft") || pathname.startsWith("/bridge") || pathname.startsWith("/sessions") || isCanvas,
9-
() => !pathname.startsWith("/blog"),
8+
() => pathname.startsWith("/developer-nft") || pathname.startsWith("/bridge") || pathname.startsWith("/sessions"),
9+
// () => !pathname.startsWith("/blog"),
1010
[pathname],
1111
)
1212
return showWalletConnector

0 commit comments

Comments
 (0)