Skip to content

Commit 54a1f60

Browse files
committed
fix loading jumos
1 parent 8f2ac8c commit 54a1f60

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/ui/pages/History/ActionsList/ActionsList.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { ViewLoading } from 'src/ui/components/ViewLoading';
88
import { HStack } from 'src/ui/ui-kit/HStack';
99
import type { AnyAction } from 'src/modules/ethereum/transactions/addressAction';
1010
import { isLocalAddressAction } from 'src/modules/ethereum/transactions/addressAction';
11-
import { DelayedRender } from 'src/ui/components/DelayedRender';
1211
import { usePreferences } from 'src/ui/features/preferences';
1312
import { ActionItem } from '../ActionItem';
1413

@@ -72,15 +71,14 @@ export function ActionsList({
7271
</VStack>
7372
{actions.length && (isLoading || hasMore) ? (
7473
<SurfaceList
74+
style={{ paddingBlockStart: 6, paddingBlockEnd: 6 }}
7575
items={[
7676
{
7777
key: 0,
7878
onClick: isLoading ? undefined : onLoadMore,
7979
style: { height: 40 },
8080
component: isLoading ? (
81-
<DelayedRender delay={400}>
82-
<ViewLoading />
83-
</DelayedRender>
81+
<ViewLoading />
8482
) : (
8583
<UIText kind="body/accent" color="var(--primary)">
8684
Show More

0 commit comments

Comments
 (0)