Skip to content

Commit

Permalink
feat: エラーメッセージを改善
Browse files Browse the repository at this point in the history
  • Loading branch information
shun-shobon committed Nov 8, 2024
1 parent 7006a07 commit 7351481
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/features/profile/Profile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export interface Ranking {
export const UpdateDisplayNameSchema = v.object({
displayName: v.pipe(
v.string("入力してください。"),
v.minLength(1, "1文字以上で入力してください。"),
v.minLength(1, "入力してください。"),
v.maxLength(8, "8文字以内で入力してください。"),
),
});
Expand Down

0 comments on commit 7351481

Please sign in to comment.