Don't logout the current session when setting up TFA
All checks were successful
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Successful in 1m8s

This commit is contained in:
Braydon 2024-09-19 20:25:25 -04:00
parent 16f0247e6a
commit 7a739bd10a

@ -23,6 +23,7 @@ import { Button } from "@/components/ui/button";
import TfaSetupForm from "@/components/dashboard/user/settings/tfa/tfa-setup-form"; import TfaSetupForm from "@/components/dashboard/user/settings/tfa/tfa-setup-form";
import { AppRouterInstance } from "next/dist/shared/lib/app-router-context.shared-runtime"; import { AppRouterInstance } from "next/dist/shared/lib/app-router-context.shared-runtime";
import { useRouter } from "next/navigation"; import { useRouter } from "next/navigation";
import { toast } from "sonner";
/** /**
* The setting that allows a * The setting that allows a
@ -79,7 +80,10 @@ const TFASetting = (): ReactElement => {
if (open) { if (open) {
setupTfa(); setupTfa();
} else if (enabledTfa) { } else if (enabledTfa) {
router.push("/auth"); toast(
"Successfully enabled two-factor auth on your account!"
);
router.push("/dashboard");
} }
}} }}
> >