Skip to content

Commit

Permalink
Merge pull request #36 from VedantPy/main
Browse files Browse the repository at this point in the history
Update timer duration in OAuthRedirect component
  • Loading branch information
VedantPy authored Feb 7, 2024
2 parents 7895491 + 2646ad9 commit 4effbaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/oauthredirect.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function OAuthRedirect() {
useEffect(() => {
const timer = setTimeout(() => {
setShouldRedirect(true);
}, 50000);
}, 2000);

// Fetch user data from AsyncStorage
const fetchUser = async () => {
Expand Down

0 comments on commit 4effbaa

Please sign in to comment.