Skip to content

Commit

Permalink
chore: Add comment for investigating client error being captured by S…
Browse files Browse the repository at this point in the history
…entry
  • Loading branch information
flozia committed Nov 24, 2023
1 parent 8911df6 commit fd8634a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ export function HighRiskBreachLayout(props: HighRiskBreachLayoutProps) {
: "/redesign/user/dashboard/fix/high-risk-data-breaches/done";
router.push(nextRoute);
} catch (_error) {
// TODO: MNTOR-2563: Capture client error with @next/sentry
setIsResolving(false);
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ export function LeakedPasswordsLayout(props: LeakedPasswordsLayoutProps) {
: "security-questions-done";
router.push(`/redesign/user/dashboard/fix/leaked-passwords/${doneSlug}`);
} catch (_error) {
// TODO: MNTOR-2563: Capture client error with @next/sentry
setIsResolving(false);
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export function SecurityRecommendationsLayout(
: "/redesign/user/dashboard/fix/security-recommendations/done";
router.push(nextRoute);
} catch (_error) {
// TODO: MNTOR-2563: Capture client error with @next/sentry
setIsResolving(false);
}
};
Expand Down

0 comments on commit fd8634a

Please sign in to comment.