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 = () => {