willba-component-library 0.0.65 → 0.0.67
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.
package/lib/index.esm.js
CHANGED
|
@@ -7969,7 +7969,9 @@ function useFilterBar() {
|
|
|
7969
7969
|
}
|
|
7970
7970
|
}
|
|
7971
7971
|
var url = "http://localhost:4000/en/events/?".concat(queryParams.toString());
|
|
7972
|
-
window
|
|
7972
|
+
if (typeof window !== 'undefined') {
|
|
7973
|
+
window.location.href = url;
|
|
7974
|
+
}
|
|
7973
7975
|
handleSelectedFilter(false);
|
|
7974
7976
|
};
|
|
7975
7977
|
return {
|