Skip to content

Commit

Permalink
VKT(Frontend): Remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoivisto committed Nov 1, 2024
1 parent 6d7a054 commit f788fe3
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ export const ExaminerRedirectPage = () => {
const { oid, status } = useAppSelector(clerkUserSelector);
useEffect(() => {
if (status === APIResponseStatus.Success) {
// eslint-disable-next-line no-console
console.log(
'Redirecting to .....',
AppRoutes.ExaminerHomePage.replace(/:oid/, oid),
);
navigate(AppRoutes.ExaminerHomePage.replace(/:oid/, oid));
}
});
Expand Down

0 comments on commit f788fe3

Please sign in to comment.