Skip to content

Commit

Permalink
Merge pull request #241 from dhruv036/staging
Browse files Browse the repository at this point in the history
Fixed scanner 'Something Went Wrong' toast on signup screen
  • Loading branch information
shreya-mishra authored Sep 7, 2023
2 parents 2e1aa34 + c9d7f23 commit 9de3f3e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/screens/AuthScreen/AuthScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,9 @@ const AuthScreen = () => {
};

useEffect(() => {
getAuthStatus();
if (scannedUserId != '') {
getAuthStatus();
}
/* eslint-disable */
}, [scannedUserId]);

Expand Down

0 comments on commit 9de3f3e

Please sign in to comment.