Skip to content

Commit

Permalink
Merge branch 'feature/human-app-frontend' into fix/help-url
Browse files Browse the repository at this point in the history
  • Loading branch information
KacperKoza343 committed Jul 8, 2024
2 parents 789dd2c + ccfeee1 commit 84bc217
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,19 @@ import { t } from 'i18next';
import { Link } from 'react-router-dom';
import Typography from '@mui/material/Typography';
import CheckCircle from '@mui/icons-material/CheckCircle';
import { useEffect } from 'react';
import { Button } from '@/components/ui/button';
import { routerPaths } from '@/router/router-paths';
import { PageCard } from '@/components/ui/page-card';
import { colorPalette } from '@/styles/color-palette';
import { useAuth } from '@/auth/use-auth';

export function ResetPasswordWorkerSuccessPage() {
const { signOut } = useAuth();

useEffect(() => {
signOut();
}, [signOut]);
return (
<PageCard
hiddenCancelButton
Expand Down

0 comments on commit 84bc217

Please sign in to comment.