pull/715/head
Travis Fischer 2025-06-16 15:21:18 +07:00
rodzic 9cee2523d9
commit 2bca04d5a6
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -10,12 +10,12 @@ import { authCopy } from '@/lib/auth-copy'
export default function ForgotPasswordPage() {
// TODO
const [error, setError] = useState<PasswordChangeError | undefined>(undefined)
const [state, setState] = useState<PasswordChangeState>({
const [error] = useState<PasswordChangeError | undefined>(undefined)
const [state] = useState<PasswordChangeState>({
type: 'start',
redirect: '/' // TODO
})
const [form, setForm] = useState<FormData | undefined>(undefined)
const [form] = useState<FormData | undefined>(undefined)
const passwordError = [
'invalid_password',