Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…nto FE
  • Loading branch information
kanghaeun committed Aug 14, 2024
2 parents e7d7f12 + 822b5ae commit bc0cbb4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions FE/src/components/SideBar/publicFilter/PublicFilter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ const PublicFilter = () => {
<div style={{ fontSize: "1.1rem" }}>에코노 캘린더</div>
</div>
<StyledSceduleType>
<ScheduleToggle color={"#ff9898"} />
<ScheduleToggle color={"#FF968A"} />
공식행사
</StyledSceduleType>
<StyledSceduleType>
<ScheduleToggle color={"#98c8ff"} />
<ScheduleToggle color={"#ffd4b5"} />
주간발표
</StyledSceduleType>
</StyledPublicFilterFrame>
Expand Down
2 changes: 1 addition & 1 deletion FE/src/components/common/FilterColorSelect.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const FilterColorSelect = ({ setFilterColor }) => {
"#D6EFD8",
"#FF968A",
"#D4BDAC",
"#FFC8A2",
"#ffd4b5",
"#AAEF98",
];

Expand Down
4 changes: 2 additions & 2 deletions FE/src/components/common/FilterModify.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ const FilterModify = ({ filterName, filterID }) => {
filterColor: filterColor,
};
axios
.post(
"/api/calendar/filter/" + filterID,
.put(
"/api/filter/" + filterID,
{
headers: { Authorization: `Bearer ${storedToken}` },
},
Expand Down

0 comments on commit bc0cbb4

Please sign in to comment.