Error adding email auth

Following: https://wasp-lang.dev/docs/auth/email I am getting an error:

import {
LoginForm,
SignupForm,
VerifyEmailForm,
ForgotPasswordForm,
ResetPasswordForm,
} from 'wasp/client/auth'

Module '"wasp/client/auth"' has no exported member 'ForgotPasswordForm'.ts(2305)
⚠ Error (TS2305) |
Module
has no exported member ForgotPasswordForm .
import ForgotPasswordForm

Module '"wasp/client/auth"' has no exported member 'ForgotPasswordForm'.ts(2305)
⚠ Error (TS2305) |
Module
has no exported member ForgotPasswordForm .
import ForgotPasswordForm

Module '"wasp/client/auth"' has no exported member 'ResetPasswordForm'.ts(2305)
⚠ Error (TS2305) |
Module
has no exported member ResetPasswordForm .
import ResetPasswordForm

I recently migrated from 0.15.0 to 0.16.0.
Wasp supports e-mail authentication out of the box, along with email verification and "forgot your password?" flows. It provides you with the server-side implementation and email templates for all of these flows.
Was this page helpful?