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

Commit 0b336ac

Browse files
committed
Fix password-mobile view names
1 parent f399426 commit 0b336ac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/view/password-mobile.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { FormStretcher } from '../component/form';
1111
import { PinBubbles, PinKeyboard } from '../component/pin-entry';
1212

1313
//
14-
// Set Password View (Mobile)
14+
// Password View (Mobile)
1515
//
1616

1717
const styles = StyleSheet.create({
@@ -30,7 +30,7 @@ const styles = StyleSheet.create({
3030
},
3131
});
3232

33-
const SetPasswordView = ({ store, wallet }) => (
33+
const PasswordView = ({ store, wallet }) => (
3434
<Background image="purple-gradient-bg">
3535
<MainContent style={styles.content}>
3636
<View style={styles.boltWrapper}>
@@ -51,9 +51,9 @@ const SetPasswordView = ({ store, wallet }) => (
5151
</Background>
5252
);
5353

54-
SetPasswordView.propTypes = {
54+
PasswordView.propTypes = {
5555
store: PropTypes.object.isRequired,
5656
wallet: PropTypes.object.isRequired,
5757
};
5858

59-
export default observer(SetPasswordView);
59+
export default observer(PasswordView);

0 commit comments

Comments
 (0)