Skip to content

Commit

Permalink
fix: 필터생성 api 요청 주소 최신화
Browse files Browse the repository at this point in the history
  • Loading branch information
kanghaeun committed Dec 1, 2024
1 parent e616ce5 commit 7b29a4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FE/error/src/utils/filterUtils/FilterCreateModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const FilterCreateModal = ({
filterColor: filterColor,
};
axios
.post("/api/filter", newFilter, {
.post("/api/filter?memberId=1", newFilter, {
headers: { Authorization: `Bearer ${storedToken}` },
})
.then((res) => {
Expand Down

0 comments on commit 7b29a4a

Please sign in to comment.