Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeKarow committed Jun 7, 2023
1 parent 9173c61 commit 83b3ba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/modals/ForgotPassword.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { trpc as api } from '~ui/lib/trpcClient'
import { ModalTitle } from './ModalTitle'

export const ForgotPasswordModalBody = forwardRef<HTMLButtonElement, ForgotPasswordModalBodyProps>(
({ props }, ref) => {
(props, ref) => {
const { t } = useTranslation(['common'])
const EmailSchema = z.object({
email: z.string().email({ message: t('form-error-enter-valid-email') as string }),
Expand Down

0 comments on commit 83b3ba8

Please sign in to comment.