We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58b26f3 commit de97cabCopy full SHA for de97cab
packages/wallet/frontend/src/lib/api/walletAddress.ts
@@ -26,7 +26,9 @@ export const updateWalletAddressSchema = z.object({
26
})
27
28
export const generateKeysSchema = z.object({
29
- nickname: z.string()
+ nickname: z.string().min(3, {
30
+ message: 'The nickname should be at least 3 characters long'
31
+ })
32
33
34
export const uploadKeySchema = z.object({
0 commit comments