mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-04 04:13:49 +01:00
Merge pull request #6560 from BlueWallet/reorder
FIX: Reorder wallets search was missing
This commit is contained in:
commit
1e1629333f
2 changed files with 2 additions and 12 deletions
|
@ -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>
|
||||
);
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue