Skip to content

Commit

Permalink
fix: fixed inline function warning (openwallet-foundation#1407)
Browse files Browse the repository at this point in the history
Signed-off-by: al-rosenthal <[email protected]>
  • Loading branch information
al-rosenthal authored Jan 22, 2025
1 parent 52149fd commit 410b369
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/legacy/core/App/navigators/SettingStack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,14 @@ const SettingStack: React.FC = () => {
/>
<Stack.Screen
name={Screens.CreatePIN}
component={(props) => <PINCreate explainedStatus {...props} />}
options={{
title: t('Screens.ChangePIN'),
headerBackTestID: testIdWithKey('Back'),
...ScreenOptionsDictionary[Screens.CreatePIN],
}}
/>
>
{(props: any) => <PINCreate explainedStatus {...props} />}
</Stack.Screen>
<Stack.Screen
name={Screens.UsePushNotifications}
component={PushNotification}
Expand Down

0 comments on commit 410b369

Please sign in to comment.