Skip to content

Commit

Permalink
fix : acesstoken 오타
Browse files Browse the repository at this point in the history
  • Loading branch information
sheepdog13 committed Feb 7, 2024
1 parent 8229899 commit 5e59a01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/_reducers/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const userSlice = createSlice({
state.status = "complete";
httpClientForCredentials.defaults.headers.common[
"Authorization"
] = `Bearer ${action.payload.accestoken}`;
] = `Bearer ${action.payload.accesstoken}`;
});
builder.addCase(asynsLoginFetch.rejected, (state, action) => {
state.status = "fail";
Expand Down

0 comments on commit 5e59a01

Please sign in to comment.