fix: deactivate account post loading (#3022)

This commit is contained in:
Lakhan Baheti 2023-12-07 17:31:58 +05:30 committed by sriram veeraghanta
parent 151ec259d8
commit 68dcfcd451
3 changed files with 13 additions and 3 deletions

View file

@ -1,7 +1,9 @@
import React, { useState } from "react";
import { useRouter } from "next/router";
import { useTheme } from "next-themes";
import { Dialog, Transition } from "@headlessui/react";
import { Trash2 } from "lucide-react";
import { mutate } from "swr";
// mobx store
import { useMobxStore } from "lib/mobx/store-provider";
// ui
@ -27,6 +29,7 @@ export const DeactivateAccountModal: React.FC<Props> = (props) => {
const router = useRouter();
const { setToastAlert } = useToast();
const { setTheme } = useTheme();
const handleClose = () => {
setIsDeactivating(false);
@ -43,8 +46,10 @@ export const DeactivateAccountModal: React.FC<Props> = (props) => {
title: "Success!",
message: "Account deactivated successfully.",
});
handleClose();
mutate("CURRENT_USER_DETAILS", null);
setTheme("system");
router.push("/");
handleClose();
})
.catch((err) =>
setToastAlert({