"use client"; import { Button } from "@/components/ui/button"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger } from "@/components/ui/dialog"; import SetPasswordForm from "./set-password-form"; type SetPasswordModalProps = { onOpenChange: (open: boolean) => void; open: boolean; }; export function SetPasswordProfileProviderModal({ onOpenChange, open }: SetPasswordModalProps) { return ( Set Password Create a password for your account to enable password-based login. onOpenChange(false)} /> ); }