From 4526e357727a51e2335df8b2954160e8d2d81fa6 Mon Sep 17 00:00:00 2001 From: Edouard Marquez Date: Thu, 28 Nov 2024 09:43:08 +0100 Subject: [PATCH] hotfix (#5956) --- .../lib/pages/product/product_page/new_product_page.dart | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/smooth_app/lib/pages/product/product_page/new_product_page.dart b/packages/smooth_app/lib/pages/product/product_page/new_product_page.dart index be0227ae687..4fcff02ae5f 100644 --- a/packages/smooth_app/lib/pages/product/product_page/new_product_page.dart +++ b/packages/smooth_app/lib/pages/product/product_page/new_product_page.dart @@ -140,11 +140,9 @@ class ProductPageState extends State setState(() => bottomPadding = size.height); } }, - child: !hasPendingOperations + child: hasPendingOperations ? const ProductPageLoadingIndicator() - : ProductQuestionsWidget( - upToDateProduct, - ), + : ProductQuestionsWidget(upToDateProduct), ), ), ],