Skip to content

Commit

Permalink
fix: UserStore 에러
Browse files Browse the repository at this point in the history
  • Loading branch information
Si-off committed Jul 21, 2024
1 parent 7e8108e commit 522d10b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stores/User.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ interface UserStoreType {
email: string;
username: string;
nickname: string;
profile_color: string | null;
profile_color: string;
profile_image: string | null;
password: string;

setUserId: (newUserId: string) => void;
setEmail: (newEmail: string) => void;
setUsername: (newUsername: string) => void;
setNickname: (newNickname: string) => void;
setProfileColor: (newProfileColor: string | null) => void;
setProfileColor: (newProfileColor: string) => void;
setProfileImage: (newProfileImage: string | null) => void;
setPassword: (newPassword: string) => void;
registerUser: (user: SignUpRequest) => void;
Expand Down

0 comments on commit 522d10b

Please sign in to comment.