Skip to content

Commit

Permalink
[ fix ] 알림 관련 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
henization committed Jul 15, 2022
1 parent d0d17f7 commit c134d59
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"dependencies": {
"@types/react-slick": "^0.23.10",
"axios": "^0.26.0",
"framework7-react": "^7.0.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-range": "^1.8.13",
Expand Down
7 changes: 1 addition & 6 deletions src/components/CardCollection/FilterModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,8 @@ export default function FilterModal(props: FilterModalProps) {
const submitFilter = () => {
const tempCheckedTags = new Set(checkedTags);
tempCheckedTags.add(intimacyTags[intimacyValues[0]]);
console.log("tempCheckedTags: ", tempCheckedTags);
setCheckedTags(tempCheckedTags);
alert([...checkedTags]);

setTimeout(function () {
closeHandler();
}, 500);
closeHandler();
};

useEffect(() => {
Expand Down

0 comments on commit c134d59

Please sign in to comment.