diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-06-14 14:29:47 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-06-14 14:29:47 -0500 |
commit | cef133031e501f8f73c66a379de38b1041287743 (patch) | |
tree | b628150cbee4facbcbfc06599baaf4c108949995 /src/screens/Signup.tsx | |
parent | 09b78a46343088a2790dab067bd4fd8384957311 (diff) | |
download | voidsky-cef133031e501f8f73c66a379de38b1041287743.tar.zst |
Add base auth & ucan request flow (web only)
Diffstat (limited to 'src/screens/Signup.tsx')
-rw-r--r-- | src/screens/Signup.tsx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/screens/Signup.tsx b/src/screens/Signup.tsx index 1d5915d65..e09ab5dd6 100644 --- a/src/screens/Signup.tsx +++ b/src/screens/Signup.tsx @@ -13,13 +13,11 @@ export const Signup = observer( <View style={{justifyContent: 'center', alignItems: 'center'}}> <Text style={{fontSize: 20, fontWeight: 'bold'}}>Create Account</Text> {store.session.uiError ?? <Text>{store.session.uiError}</Text>} - {store.session.uiState === 'idle' ? ( + {!store.session.uiIsProcessing ? ( <> <Button title="Create new account" - onPress={() => - store.session.createTestAccount('http://localhost:1986') - } + onPress={() => store.session.login()} /> <Button title="Log in to an existing account" |