Skip to content

Commit

Permalink
fix: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
David Lopez committed Nov 22, 2023
1 parent ffa5c27 commit 8a82f39
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1317,7 +1317,6 @@ export const useAuth = () => {
const attributes = await fetchUserAttributes();
setResult({ user: { attributes }, isLoading: false });
} catch (error) {
console.log({ error });
setResult({ error, isLoading: false });
}
}, []);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export const useAuthString = `export const useAuth = () => {
const attributes = await fetchUserAttributes();
setResult({ user: {attributes}, isLoading: false });
} catch (error) {
console.log({error});
setResult({ error, isLoading: false });
}
}, []);
Expand Down

0 comments on commit 8a82f39

Please sign in to comment.