File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
src/ui/pages/History/ActionsList Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ import { ViewLoading } from 'src/ui/components/ViewLoading';
88import { HStack } from 'src/ui/ui-kit/HStack' ;
99import type { AnyAction } from 'src/modules/ethereum/transactions/addressAction' ;
1010import { isLocalAddressAction } from 'src/modules/ethereum/transactions/addressAction' ;
11- import { DelayedRender } from 'src/ui/components/DelayedRender' ;
1211import { usePreferences } from 'src/ui/features/preferences' ;
1312import { 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
You can’t perform that action at this time.
0 commit comments