diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-02-19 14:17:59 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-19 14:17:59 +0900 |
commit | 6d422bb583bf8946d92fe270b1fe5c760251f0cc (patch) | |
tree | 11871ebc34d48c5afcac1aa56464f8bffdc9f83a /src/view/com/auth/create/Step1.tsx | |
parent | b3e6f0f29deae515d232d14f099e8c144d870f48 (diff) | |
parent | 7390863a1005eeadbb6dbdcbc47f9cc13298e101 (diff) | |
download | voidsky-6d422bb583bf8946d92fe270b1fe5c760251f0cc.tar.zst |
Merge branch 'main' into patch-3
Diffstat (limited to 'src/view/com/auth/create/Step1.tsx')
-rw-r--r-- | src/view/com/auth/create/Step1.tsx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/view/com/auth/create/Step1.tsx b/src/view/com/auth/create/Step1.tsx index a7abbfaa8..4c7018485 100644 --- a/src/view/com/auth/create/Step1.tsx +++ b/src/view/com/auth/create/Step1.tsx @@ -73,6 +73,10 @@ export function Step1({ /> <StepHeader uiState={uiState} title={_(msg`Your account`)} /> + {uiState.error ? ( + <ErrorMessage message={uiState.error} style={styles.error} /> + ) : undefined} + <View style={s.pb20}> <Text type="md-medium" style={[pal.text, s.mb2]}> <Trans>Hosting provider</Trans> @@ -259,9 +263,6 @@ export function Step1({ )} </> )} - {uiState.error ? ( - <ErrorMessage message={uiState.error} style={styles.error} /> - ) : undefined} </View> ) } @@ -269,7 +270,7 @@ export function Step1({ const styles = StyleSheet.create({ error: { borderRadius: 6, - marginTop: 10, + marginBottom: 10, }, dateInputButton: { borderWidth: 1, |