import { Check } from "@styled-icons/boxicons-regular"; import { useParams } from "react-router-dom"; import styled from "styled-components"; import { useEffect, useState } from "preact/hooks"; import { Modal, Preloader } from "@revoltchat/ui"; import { useApplicationState } from "../../mobx/State"; const Centre = styled.div` display: flex; justify-content: center; `; export default function ConfirmDelete() { const state = useApplicationState(); const [deleted, setDeleted] = useState(true); const { token } = useParams<{ token: string }>(); useEffect(() => { state.config .createClient() .api.put("/auth/account/delete", { token }) .then(() => setDeleted(true)); }, []); return ( Your account will be deleted in 7 days.
You may contact{" "} Revolt support {" "} to cancel the request if you wish. ) : ( "Contacting the server." ) } nonDismissable> {deleted ? ( ) : ( )}
); }