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) => {
리뷰 필터
diff --git a/src/views/Map/components/BottomSheetContent.tsx b/src/views/Map/components/BottomSheetContent.tsx
index ce9ed10..4651c5d 100644
--- a/src/views/Map/components/BottomSheetContent.tsx
+++ b/src/views/Map/components/BottomSheetContent.tsx
@@ -21,6 +21,7 @@ const BottomSheetContent = (props: contentProps) => {
const onClickContent = () => {
navigate(`/${contentId}`);
+ document.body.style.overflow = 'auto';
};
return (
diff --git a/src/views/Search/components/Search/FilterBottomSheet.tsx b/src/views/Search/components/Search/FilterBottomSheet.tsx
index a30d96c..fd5d839 100644
--- a/src/views/Search/components/Search/FilterBottomSheet.tsx
+++ b/src/views/Search/components/Search/FilterBottomSheet.tsx
@@ -42,7 +42,7 @@ const FilterBottomSheet = (props: FilterBottomSheetProps) => {
필터 상세 설정