diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-04-06 15:23:14 -0400 |
|---|---|---|
| committer | Ivan Chen <ivan@tagg.id> | 2021-04-06 15:23:14 -0400 |
| commit | 28218a67a6630863d57f1699e8453155ee5f2aa3 (patch) | |
| tree | 048b4d9a14a0d3681832eedcc01cba23b1c4a232 /src/store | |
| parent | b62fc286c0de38214e9dc5fb82163ee1529e8a9e (diff) | |
using tagg user id
Diffstat (limited to 'src/store')
| -rw-r--r-- | src/store/actions/user.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store/actions/user.ts b/src/store/actions/user.ts index 4faa2206..3ebd4190 100644 --- a/src/store/actions/user.ts +++ b/src/store/actions/user.ts @@ -173,7 +173,7 @@ export const logout = ( try { // do our best effort here to gracefully disconnect the user if (client) { - await client.disconnectUser(); + client.disconnectUser(); } await AsyncStorage.clear(); dispatch({type: userLoggedIn.type, payload: {userId: '', username: ''}}); |
