diff options
author | Hailey <me@haileyok.com> | 2024-03-08 15:25:33 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-08 15:25:33 -0800 |
commit | 7899a6fd09b1c4981480bec20fa3b4aca9252a5f (patch) | |
tree | 5cd133120956472c909b5dd514e2e119d7708623 /src | |
parent | 62e57c3b08020e17b3266876de342996c8bd12db (diff) | |
download | voidsky-7899a6fd09b1c4981480bec20fa3b4aca9252a5f.tar.zst |
Fix missing check for invite code (#3157)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/auth/create/Step1.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/auth/create/Step1.tsx b/src/view/com/auth/create/Step1.tsx index c1bec535f..1f6852f8c 100644 --- a/src/view/com/auth/create/Step1.tsx +++ b/src/view/com/auth/create/Step1.tsx @@ -157,7 +157,7 @@ export function Step1({ </View> )} - {uiState.inviteCode ? ( + {!uiState.isInviteCodeRequired || uiState.inviteCode ? ( <> <View style={s.pb20}> <Text |