chore: update nuxt config
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
import { z } from 'zod'
|
||||
|
||||
const loginSchema = z.object({
|
||||
name: z.string().min(6, 'Please enter a valid username'),
|
||||
password: z.string().min(6, 'Password must be at least 6 characters'),
|
||||
name: z.string().min(3, 'Please enter a valid username'),
|
||||
password: z.string().min(3, 'Password must be at least 3 characters'),
|
||||
})
|
||||
|
||||
const { login } = useUserStore()
|
||||
|
||||
Reference in New Issue
Block a user