We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3702bc commit 2a15db1Copy full SHA for 2a15db1
renderer/components/UserAccountsList/UserAccountsList.tsx
@@ -96,11 +96,11 @@ export function UserAccountsList() {
96
const [sortOption, setSortOption] = useState<SortOption>(sortOptions[2]);
97
98
return (
99
- <VStack>
+ <VStack gap={4}>
100
{nodeStatusData?.blockchain.synced === false ? (
101
<ChainSyncingMessage mb={4} />
102
) : null}
103
- <Grid w="100%" templateColumns="3fr 1fr" gap={4} mb={4}>
+ <Grid w="100%" templateColumns="3fr 1fr" gap={4}>
104
<GridItem>
105
<SearchInput onChange={(e) => setSearchInput(e.target.value)} />
106
</GridItem>
0 commit comments