diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-02-27 19:17:58 +0900 |
---|---|---|
committer | Minseo Lee <itoupluk427@gmail.com> | 2024-02-27 19:17:58 +0900 |
commit | 41e69651f97cc95d42ff4ae247706604faca51ae (patch) | |
tree | 1510c37bf092ae6e7fd4e66329f4b6740c5e6ee0 | |
parent | b2605d3908c9e3d59e07c5a53172b067f55e650c (diff) | |
download | voidsky-41e69651f97cc95d42ff4ae247706604faca51ae.tar.zst |
Update ChangePassword.tsx
-rw-r--r-- | src/view/com/modals/ChangePassword.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/modals/ChangePassword.tsx b/src/view/com/modals/ChangePassword.tsx index b2415a1ed..4badc88aa 100644 --- a/src/view/com/modals/ChangePassword.tsx +++ b/src/view/com/modals/ChangePassword.tsx @@ -137,7 +137,9 @@ export function Component() { <View> <View style={styles.titleSection}> <Text type="title-lg" style={[pal.text, styles.title]}> - {stage !== Stages.Done ? _(msg`Change Password`) : _(msg`Password Changed`)} + {stage !== Stages.Done + ? _(msg`Change Password`) + : _(msg`Password Changed`)} </Text> </View> |