Merge pull request #6560 from BlueWallet/reorder

FIX: Reorder wallets search was missing
This commit is contained in:
GLaDOS 2024-05-15 23:22:42 +00:00 committed by GitHub
commit 1e1629333f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 12 deletions

View file

@ -1,10 +0,0 @@
import React, { lazy, Suspense } from 'react';
import { LazyLoadingIndicator } from './LazyLoadingIndicator';
const ReorderWallets = lazy(() => import('../screen/wallets/reorderWallets'));
export const ReorderWalletsComponent = () => (
<Suspense fallback={<LazyLoadingIndicator />}>
<ReorderWallets />
</Suspense>
);

View file

@ -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 = () => {
<Stack.Navigator screenOptions={{ headerShadowVisible: false }}>
<Stack.Screen
name="ReorderWalletsScreen"
component={ReorderWalletsComponent}
component={ReorderWallets}
options={navigationStyle({
headerBackVisible: false,
headerLargeTitle: true,