diff --git a/packages/admin-ui/src/lib/catalog/src/components/product-list/product-list.component.ts b/packages/admin-ui/src/lib/catalog/src/components/product-list/product-list.component.ts index ca04840bf0..87b50102c3 100644 --- a/packages/admin-ui/src/lib/catalog/src/components/product-list/product-list.component.ts +++ b/packages/admin-ui/src/lib/catalog/src/components/product-list/product-list.component.ts @@ -123,6 +123,9 @@ export class ProductListComponent }) .pipe( switchMap(response => (response ? this.dataService.product.deleteProduct(productId) : EMPTY)), + // Short delay to allow the product to be removed from the search index before + // refreshing. + delay(500), ) .subscribe( () => {