Skip to content

Commit

Permalink
fix: 쿠키 전송 가능하도록 파츠뽑기 api에 credentials 속성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
thgee committed Aug 22, 2024
1 parent 54b99a2 commit 2304a96
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/service/src/apis/partsEvent/apiPostParts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const apiPostParts = (): Promise<IParts> =>
method: "POST",
headers: {
Authorization: `Bearer ${getAccessToken()}`,
credentials: "include",
},
},
).then((response) => response.json());

0 comments on commit 2304a96

Please sign in to comment.