mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-06 02:36:38 +00:00
disable 2fa and end email notifications
This commit is contained in:
14
src/app/profile/general/page.tsx
Normal file
14
src/app/profile/general/page.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
"use client";
|
||||
|
||||
import { useState } from "react";
|
||||
import Enable2FaForm from "../../../components/Enable2FaForm";
|
||||
|
||||
export default function ProfileGeneralPage() {
|
||||
const [open, setOpen] = useState(true);
|
||||
|
||||
return (
|
||||
<>
|
||||
{/* <Enable2FaForm open={open} setOpen={setOpen} /> */}
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user