"use client"; import { Button } from "@/components/ui/button"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger } from "@/components/ui/dialog"; import ResetPasswordForm from "./profile-reset-password-form"; type ResetPasswordModalProps = { onOpenChange: (open: boolean) => void; open: boolean; }; export function ResetPasswordProfileProviderModal({ onOpenChange, open }: ResetPasswordModalProps) { return ( Reset Password Enter a new password for your account below. onOpenChange(false)} /> ); }