From 0abaf5699013239e3f9dccf300e67fe612ec22ba Mon Sep 17 00:00:00 2001 From: Marcos Rodriguez Velez Date: Wed, 15 May 2024 18:31:04 -0400 Subject: [PATCH] FIX: Reorder wallets search was missing --- navigation/LazyLoadReorderWalletsStack.tsx | 10 ---------- navigation/ReorderWalletsStack.tsx | 4 ++-- 2 files changed, 2 insertions(+), 12 deletions(-) delete mode 100644 navigation/LazyLoadReorderWalletsStack.tsx diff --git a/navigation/LazyLoadReorderWalletsStack.tsx b/navigation/LazyLoadReorderWalletsStack.tsx deleted file mode 100644 index 39f985456..000000000 --- a/navigation/LazyLoadReorderWalletsStack.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React, { lazy, Suspense } from 'react'; -import { LazyLoadingIndicator } from './LazyLoadingIndicator'; - -const ReorderWallets = lazy(() => import('../screen/wallets/reorderWallets')); - -export const ReorderWalletsComponent = () => ( - }> - - -); diff --git a/navigation/ReorderWalletsStack.tsx b/navigation/ReorderWalletsStack.tsx index defbd53cb..076f4b363 100644 --- a/navigation/ReorderWalletsStack.tsx +++ b/navigation/ReorderWalletsStack.tsx @@ -1,9 +1,9 @@ import React from 'react'; import { createNativeStackNavigator } from '@react-navigation/native-stack'; -import { ReorderWalletsComponent } from './LazyLoadReorderWalletsStack'; import { useTheme } from '../components/themes'; import navigationStyle from '../components/navigationStyle'; import loc from '../loc'; +import ReorderWallets from '../screen/wallets/reorderWallets'; const Stack = createNativeStackNavigator(); @@ -14,7 +14,7 @@ const ReorderWalletsStackRoot = () => {