diff --git a/src/components/BottomSheet.tsx b/src/components/BottomSheet.tsx index c060925..89d45ed 100644 --- a/src/components/BottomSheet.tsx +++ b/src/components/BottomSheet.tsx @@ -110,7 +110,6 @@ const backgroundCss = css` const containerCss = (height: string) => css` position: absolute; bottom: 0; - overflow: auto; width: 100dvw; height: ${height}; diff --git a/src/views/Detail/components/Review.tsx b/src/views/Detail/components/Review.tsx index a0f245d..3aae208 100644 --- a/src/views/Detail/components/Review.tsx +++ b/src/views/Detail/components/Review.tsx @@ -49,7 +49,6 @@ const Review = () => { const handleSetShowGuide = (value: boolean) => { setShowGuide(value); - document.body.style.overflow = ''; }; const handleFilterState = (category: category, facility: string) => { @@ -71,7 +70,6 @@ const Review = () => { const selectedFilterList = getFilterList(filterState); useEffect(() => { - if (showGuide) document.body.style.overflow = 'hidden'; if (sessionStorage.getItem(STORAGE_KEY.successToast)) { setToast(true); sessionStorage.removeItem(STORAGE_KEY.successToast); diff --git a/src/views/Detail/components/review/CategoryBottomSheet.tsx b/src/views/Detail/components/review/CategoryBottomSheet.tsx index a6d8eb7..6c9865e 100644 --- a/src/views/Detail/components/review/CategoryBottomSheet.tsx +++ b/src/views/Detail/components/review/CategoryBottomSheet.tsx @@ -43,7 +43,7 @@ const CategoryBottomSheet = (props: CategoryBottomSheetProps) => {

리뷰 필터

-