Skip to content

Commit

Permalink
add v3.9.0-rc.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwang401 committed Apr 13, 2023
1 parent 1214050 commit 7463ccb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ This file is a running track of new features and fixes to each version of the pa

This project follows [Semantic Versioning](http://semver.org) guidelines.

## v3.9.0-rc.6

### Fixed

- Email max length on the login screen

## v3.9.0-rc.5

### Fixed
Expand Down
5 changes: 2 additions & 3 deletions resources/scripts/components/auth/LoginContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { zodI18nMap } from 'zod-i18n-map'
const LoginContainer = () => {
const { t: tAuth } = useTranslation('auth')
const { t: tStrings } = useTranslation('strings')
const { t: tVal } = useTranslation('validation')
const { clearFlashes, clearAndAddHttpError } = useFlashKey('auth:sign_in')
const location = useLocation()

Expand All @@ -23,8 +22,8 @@ const LoginContainer = () => {
}, [])

const schema = z.object({
email: z.string().email().max(10),
password: z.string().min(1),
email: z.string().email().nonempty(),
password: z.string().nonempty(),
})

const methods = useForm({
Expand Down

0 comments on commit 7463ccb

Please sign in to comment.