Skip to content

Commit 4d93fb0

Browse files
fix: cache-wake-filteres (#1410)
1 parent 505a4eb commit 4d93fb0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wake/loaders/productListingPage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ export const cacheKey = (props: Props, req: Request, _ctx: AppContext) => {
373373
// Add any filter parameters
374374
url.searchParams.forEach((value, key) => {
375375
if (
376-
key.startsWith("filter.") || key === "q" || key === "sort" ||
376+
key === "filtro" || key === "q" || key === "sort" ||
377377
key === "page"
378378
) {
379379
params.append(key, value);

0 commit comments

Comments
 (0)