mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-16 06:58:46 +00:00
사소한 리팩토링
This commit is contained in:
@@ -6,7 +6,7 @@ export const userInfoResponse = z.object({
|
||||
});
|
||||
export type UserInfoResponse = z.infer<typeof userInfoResponse>;
|
||||
|
||||
export const changeNicknameRequest = z.object({
|
||||
export const nicknameChangeRequest = z.object({
|
||||
newNickname: z.string().min(2).max(8),
|
||||
});
|
||||
export type ChangeNicknameRequest = z.infer<typeof changeNicknameRequest>;
|
||||
export type NicknameChangeRequest = z.infer<typeof nicknameChangeRequest>;
|
||||
|
||||
Reference in New Issue
Block a user