FIX: Stack name warning

This commit is contained in:
Marcos Rodriguez Velez 2024-01-01 14:16:37 -04:00
parent c6717f1906
commit 5960fa57da
No known key found for this signature in database
GPG Key ID: 6030B2F48CCE86D7

View File

@ -340,7 +340,11 @@ const ReorderWalletsStackRoot = () => {
return (
<ReorderWalletsStack.Navigator name="ReorderWalletsRoot" screenOptions={{ headerShadowVisible: false }}>
<ReorderWalletsStack.Screen name="ReorderWallets" component={ReorderWallets} options={ReorderWallets.navigationOptions(theme)} />
<ReorderWalletsStack.Screen
name="ReorderWalletsScreen"
component={ReorderWallets}
options={ReorderWallets.navigationOptions(theme)}
/>
</ReorderWalletsStack.Navigator>
);
};