import { Fragment, useState } from "react"; import { usePopper } from "react-popper"; import { X } from "lucide-react"; import { Popover } from "@headlessui/react"; export const ForgotPasswordPopover = () => { // popper-js refs const [referenceElement, setReferenceElement] = useState(null); const [popperElement, setPopperElement] = useState(null); // popper-js init const { styles, attributes } = usePopper(referenceElement, popperElement, { placement: "right-start", modifiers: [ { name: "preventOverflow", options: { padding: 12, }, }, ], }); return ( {({ close }) => (
🤥

We see that your god hasn{"'"}t enabled SMTP, we will not be able to send a password reset link

)}
); };