diff --git a/src/app/core/store/shopping/product-prices/product-prices.effects.ts b/src/app/core/store/shopping/product-prices/product-prices.effects.ts index a98c46d447..648944a7aa 100644 --- a/src/app/core/store/shopping/product-prices/product-prices.effects.ts +++ b/src/app/core/store/shopping/product-prices/product-prices.effects.ts @@ -16,7 +16,7 @@ export class ProductPricesEffects { ofType(loadProductPrices), mapToPayloadProperty('skus'), whenTruthy(), - window(this.actions$.pipe(ofType(loadProductPrices), debounceTime(500))), + window(this.actions$.pipe(ofType(loadProductPrices), debounceTime(SSR ? 20 : 500))), mergeMap(window$ => window$.pipe( toArray(),