Skip to content

Commit

Permalink
auth store id 초기값 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ssssksss committed Jul 19, 2024
1 parent 2c0627d commit f5e481b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/authStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ interface AuthActions {

// 3. 초기 상태 정의
const initialState: AuthState = {
id: NaN,
id: 0,
userStatus: "",
nickname: "",
age: 0,
Expand All @@ -35,7 +35,7 @@ const initialState: AuthState = {
phoneNumber: "",
isAdmin: false,
userImage: {
id: NaN,
id: 0,
address: "",
createdDate: "",
}
Expand Down

0 comments on commit f5e481b

Please sign in to comment.