diff --git a/components/Lander/AllActivities.tsx b/components/Lander/AllActivities.tsx
index 3c68177..f966412 100644
--- a/components/Lander/AllActivities.tsx
+++ b/components/Lander/AllActivities.tsx
@@ -56,7 +56,7 @@ function AllActivity({
{title}
- ₩ {price} {' '}
+ ₩{price}{' '}
/ 인
diff --git a/components/Lander/BestActivities.tsx b/components/Lander/BestActivities.tsx
index 6760192..2026e4f 100644
--- a/components/Lander/BestActivities.tsx
+++ b/components/Lander/BestActivities.tsx
@@ -28,7 +28,8 @@ function BestActivity({
};
return (
-
No activities found
)}
- {bestActivitiesDataNotPc?.activities && bestActivitiesDataNotPc.activities.length > 0 ? (
+ {bestActivitiesDataNotPc?.activities &&
+ bestActivitiesDataNotPc.activities.length > 0 ? (
{bestActivitiesDataNotPc.activities.map((item: ActivityDetail) => (
getActivityList(params),
});
- if(isLoading) {
- return ()
+ if (isLoading) {
+ return ;
}
return (
-
diff --git a/components/Lander/Main.type.ts b/components/Lander/Main.type.ts
index 3d7c8c3..c456a9b 100644
--- a/components/Lander/Main.type.ts
+++ b/components/Lander/Main.type.ts
@@ -3,4 +3,5 @@ export interface mainPageStateProps {
itemsPerPage: number;
selectedKategorie: string;
selectedSorted: string;
-}
\ No newline at end of file
+ sortedName: string;
+}
diff --git a/components/PriceFilterBtn/PriceFilterBtn.tsx b/components/PriceFilterBtn/PriceFilterBtn.tsx
index e89543f..ab486a1 100644
--- a/components/PriceFilterBtn/PriceFilterBtn.tsx
+++ b/components/PriceFilterBtn/PriceFilterBtn.tsx
@@ -26,7 +26,6 @@ export default function PriceFilterBtn() {
sortedName: sortedName,
}));
setShowMenuList(false);
- console.log(selectedPriceSorted);
};
return (
@@ -68,7 +67,9 @@ export default function PriceFilterBtn() {