Skip to content

Commit f189c6d

Browse files
committed
fix: minor fixes
1 parent 4b441ab commit f189c6d

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

src/components/FindWallet/WalletFilterSidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const WalletFilterSidebar = ({
4545
const { supportedLanguage } = useContext(WalletSupportedLanguageContext)
4646

4747
return (
48-
<Box w={{ md: "330px" }} {...boxProps}>
48+
<Box w={{ md: showMobileSidebar ? "full" : "330px" }} {...boxProps}>
4949
<Box position="sticky" top={top ?? 0} zIndex={2} w={{ md: "330px" }}>
5050
<Flex
5151
justifyContent="space-between"

src/components/FindWallet/WalletTable/index.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -362,10 +362,7 @@ const WalletTable = ({
362362
{hasPersonasLabels && (
363363
<Flex gap={1.5} wrap="wrap">
364364
{walletPersonas.map((persona) => (
365-
<Tag
366-
key={persona}
367-
label={t(persona).toUpperCase()}
368-
/>
365+
<Tag key={persona} label={t(persona)} />
369366
))}
370367
</Flex>
371368
)}

src/pages/wallets/find-wallet.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { useTranslation } from "next-i18next"
55
import { serverSideTranslations } from "next-i18next/serverSideTranslations"
66
import {
77
Box,
8+
calc,
89
Center,
910
Flex,
1011
Text,
@@ -218,7 +219,7 @@ const FindWalletPage = () => {
218219
{/* Filters sidebar */}
219220
<WalletFilterSidebar
220221
hideBelow="lg"
221-
top={NAV_BAR_PX_HEIGHT}
222+
top={calc(NAV_BAR_PX_HEIGHT).subtract("2px").toString()}
222223
{...{
223224
filters,
224225
resetWalletFilter,

0 commit comments

Comments
 (0)