feat: add forgot password page

This commit is contained in:
Ali BARIN
2023-03-03 14:38:54 +00:00
parent cc05bc7db8
commit 4792853eb6
9 changed files with 122 additions and 6 deletions

View File

@@ -15,11 +15,11 @@ import useAuthentication from 'hooks/useAuthentication';
import useFormatMessage from 'hooks/useFormatMessage';
import useCurrentUser from 'hooks/useCurrentUser';
type TDeleteAccountDialogProps = {
type DeleteAccountDialogProps = {
onClose: () => void;
}
export default function DeleteAccountDialog(props: TDeleteAccountDialogProps) {
export default function DeleteAccountDialog(props: DeleteAccountDialogProps) {
const [deleteUser] = useMutation(DELETE_USER);
const formatMessage = useFormatMessage();
const currentUser = useCurrentUser();