Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit a11ad95

Browse files
committed
Fix linking error in SetPassword view
1 parent 342f78b commit a11ad95

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/view/set-password-mobile.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const styles = StyleSheet.create({
2929
},
3030
});
3131

32-
const SetPasswordView = ({ store, wallet, nav }) => (
32+
const SetPasswordView = ({ store, wallet }) => (
3333
<Background image="purple-gradient-bg">
3434
<MainContent style={styles.content}>
3535
<CopyOnboardText style={styles.title}>Set PIN</CopyOnboardText>
@@ -50,7 +50,6 @@ const SetPasswordView = ({ store, wallet, nav }) => (
5050
SetPasswordView.propTypes = {
5151
store: PropTypes.object.isRequired,
5252
wallet: PropTypes.object.isRequired,
53-
nav: PropTypes.object.isRequired,
5453
};
5554

5655
export default observer(SetPasswordView);

0 commit comments

Comments
 (0)