ublo-lib 1.47.32 → 1.47.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -98,7 +98,7 @@ function MagicBox({ stay, cartUrl, channel = "ESF", className, alignContent, max
|
|
|
98
98
|
: filter;
|
|
99
99
|
return { ...acc, activities };
|
|
100
100
|
}
|
|
101
|
-
const filterWithoutRestricted = filter.filter((item) => !item.restricted);
|
|
101
|
+
const filterWithoutRestricted = filter.filter((item) => key !== "activities" && !item.restricted);
|
|
102
102
|
return { ...acc, [key]: filterWithoutRestricted };
|
|
103
103
|
}, {});
|
|
104
104
|
const formattedCategories = categoryList?.map(({ code, label }) => {
|