From 30ae596f6b7f878045ac6210659199867e744980 Mon Sep 17 00:00:00 2001 From: jorbuedo Date: Fri, 18 Oct 2024 18:17:43 +0200 Subject: [PATCH] fix --- apps/wallet-mobile/src/features/Send/common/navigation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/wallet-mobile/src/features/Send/common/navigation.ts b/apps/wallet-mobile/src/features/Send/common/navigation.ts index e6cab8934a..8d6338b453 100644 --- a/apps/wallet-mobile/src/features/Send/common/navigation.ts +++ b/apps/wallet-mobile/src/features/Send/common/navigation.ts @@ -8,7 +8,7 @@ export const useNavigateTo = () => { return useRef({ selectedTokens: () => navigation.navigate('send-list-amounts-to-send'), - addToken: ({shouldPopPrevious}: {shouldPopPrevious?: boolean} = {shouldPopPrevious = false}) => { + addToken: ({shouldPopPrevious}: {shouldPopPrevious: boolean} = {shouldPopPrevious: false}) => { if (shouldPopPrevious) navigation.pop() navigation.navigate('send-select-token-from-list') },