Skip to content

Commit 44292da

Browse files
committed
address feedback
1 parent 249df33 commit 44292da

File tree

3 files changed

+2
-15
lines changed

3 files changed

+2
-15
lines changed

apps/hub/src/app/_components/sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const Sidebar = (props: Props) => {
8787

8888
{/* Sidebar */}
8989
<div
90-
className={`fixed inset-y-0 left-0 z-50 w-60 transform border-r border-neutral-10 bg-white-100 transition-transform duration-300 ease-in-out lg:static lg:translate-x-0 ${
90+
className={`fixed inset-y-0 left-0 z-50 w-60 transform bg-white-100 transition-transform duration-300 ease-in-out lg:static lg:translate-x-0 ${
9191
isOpen ? 'translate-x-0' : '-translate-x-full'
9292
}`}
9393
>

apps/hub/src/app/_components/top-bar.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
'use client'
22

3-
import { IconButton } from '@status-im/components'
4-
import { SettingsIcon } from '@status-im/icons/20'
53
import { FeedbackPopover, Link } from '@status-im/status-network/components'
64
import Image from 'next/image'
75

@@ -87,11 +85,6 @@ export function TopBar({ onMenuToggle }: TopBarProps) {
8785

8886
{/* Connect Wallet Button */}
8987
<ConnectButton />
90-
91-
{/* Settings Button */}
92-
<div className="hidden md:block">
93-
<IconButton variant="ghost" icon={<SettingsIcon />} />
94-
</div>
9588
</div>
9689
</div>
9790
</div>

apps/hub/src/app/stake/page.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,7 @@ import { useMemo, useState } from 'react'
44

55
import { zodResolver } from '@hookform/resolvers/zod'
66
import { Tooltip } from '@status-im/components'
7-
import {
8-
DropdownIcon,
9-
ExternalIcon,
10-
InfoIcon,
11-
PlaceholderIcon,
12-
} from '@status-im/icons/20'
7+
import { DropdownIcon, ExternalIcon, InfoIcon } from '@status-im/icons/20'
138
import { Button, ButtonLink } from '@status-im/status-network/components'
149
import { ConnectKitButton } from 'connectkit'
1510
import Image from 'next/image'
@@ -273,7 +268,6 @@ export default function StakePage() {
273268
})
274269
}
275270
>
276-
<PlaceholderIcon className="text-blur-white/70" />
277271
{isClaimingTokens ? 'Claiming...' : 'Claim testnet SNT'}
278272
</Button>
279273
</div>

0 commit comments

Comments
 (0)