Skip to content

Commit 301b9be

Browse files
authored
fix: [lw-11750] adjust max width for assets list (#1492)
1 parent dc8997c commit 301b9be

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/nami/src/ui/app/components/assetPopoverDiff.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ const AssetsPopover = ({ assets, isDifference }) => {
112112
height={200}
113113
itemCount={assets.length}
114114
itemSize={45}
115-
width={385}
115+
width={345}
116116
layout="vertical"
117117
>
118118
{({ index, style }) => {

packages/nami/src/ui/app/pages/send.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1233,7 +1233,7 @@ const AssetsSelector = ({
12331233
height={200}
12341234
itemCount={filteredAssets.length}
12351235
itemSize={45}
1236-
width={385}
1236+
width={345}
12371237
layout="vertical"
12381238
>
12391239
{({ index, style }) => {
@@ -1259,7 +1259,7 @@ const AssetsSelector = ({
12591259
</List>
12601260
) : (
12611261
<Box
1262-
width={385}
1262+
width={345}
12631263
height={200}
12641264
display="flex"
12651265
alignItems="center"
@@ -1276,7 +1276,7 @@ const AssetsSelector = ({
12761276
)
12771277
) : (
12781278
<Box
1279-
width={385}
1279+
width={345}
12801280
height={200}
12811281
display="flex"
12821282
alignItems="center"

0 commit comments

Comments
 (0)