Skip to content

Commit

Permalink
fix: do not track this as an error
Browse files Browse the repository at this point in the history
  • Loading branch information
charleslavon committed Feb 6, 2024
1 parent dbbe5e4 commit 63bd928
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/pages/signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,6 @@ const SignUpPage: NextPageWithLayout = () => {
return setIsAccountAvailable(false);
}
} catch (error: any) {
console.log(error);
recordHandledError({
scope: 'sign-up: account availability check',
message: error.message || error,
});
setIsAccountAvailable(false);
}
}, []);
Expand Down

0 comments on commit 63bd928

Please sign in to comment.