Skip to content

Commit 06f78da

Browse files
committed
[chore] console.log 삭제
1 parent 44ca357 commit 06f78da

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

src/domains/community/main/CommunityFilter.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ function CommunityFilter({ posts, setPosts }: Props) {
2525
const handleChange = async (selectTitle: string) => {
2626
if (!query) return;
2727

28-
console.log(selectTitle);
29-
3028
const data = await fetchPostByTab({
3129
category: query,
3230
filter: sortMap[selectTitle as keyof typeof sortMap],

src/domains/recipe/components/details/BackBtn.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ function BackButton() {
99
});
1010

1111
const handleBack = () => {
12-
console.log('뒤로가기 클릭');
13-
console.log('저장된 스크롤:', sessionStorage.getItem('cocktail_list_scroll'));
14-
console.log('저장된 URL:', sessionStorage.getItem('cocktail_list_scroll_url'));
15-
console.log('복원 플래그:', sessionStorage.getItem('cocktail_list_scroll_restore'));
1612
restoreAndGoBack();
1713
};
1814

src/domains/recipe/components/details/DetailsHeader.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ function DetailsHeader({ id, favor }: { id: number; favor: boolean | undefined }
2020
const url = async () => {
2121
const res = await fetch(`${getApi}/cocktails/${id}/share`);
2222
const json = await res.json();
23-
console.log(json.data);
2423
setMeta(json.data);
2524
};
2625

0 commit comments

Comments
 (0)