Skip to content

Commit

Permalink
fix reset email
Browse files Browse the repository at this point in the history
  • Loading branch information
zlayine committed Oct 20, 2023
1 parent 50803e0 commit 159f61f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion resources/js/components/pages/auth/RequestResetPassword.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,11 @@ const requestReset = async () => {
if (!(await isValid())) return;
isLoading.value = true;
await AuthApi.requestPasswordReset(email.value);
try {
await AuthApi.requestPasswordReset(email.value);
} catch {
// do nothing
}
snackbar.success({
title: "If an account with this email exists, you'll receive an email shortly with information on resetting your password.",
save: false,
Expand Down
1 change: 0 additions & 1 deletion resources/js/util/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ export const wcRequiredNamespaces = (network: string) => {
};
};


export const wcOptions: WalletConnectModalSignOptions = {
projectId: wcProjectId,
metadata: getAppMetadata(),
Expand Down

0 comments on commit 159f61f

Please sign in to comment.