FIX: Header for TX creation Details

This commit is contained in:
marcosrdz 2020-10-05 17:29:10 -04:00
parent e13fbdf083
commit 2ccd75c8ef
2 changed files with 3 additions and 13 deletions

View file

@ -175,17 +175,7 @@ const SendDetailsRoot = () => (
component={PsbtWithHardwareWallet}
options={PsbtWithHardwareWallet.navigationOptions}
/>
<SendDetailsStack.Screen
name="CreateTransaction"
component={SendCreate}
options={{
headerStyle: {
backgroundColor: '#FFFFFF',
borderBottomWidth: 0,
},
headerTintColor: '#0c2550',
}}
/>
<SendDetailsStack.Screen name="CreateTransaction" component={SendCreate} options={SendCreate.navigationOptions} />
<SendDetailsStack.Screen name="Success" component={Success} options={Success.navigationOptions} />
<SendDetailsStack.Screen name="SelectWallet" component={SelectWallet} options={SelectWallet.navigationOptions} />
</SendDetailsStack.Navigator>

View file

@ -253,8 +253,8 @@ SendCreate.navigationOptions = ({ navigation, route }) => {
}
return {
...BlueNavigationStyle,
title: loc.send.create.details,
...BlueNavigationStyle(),
title: loc.send.create_details,
headerRight,
};
};