From db17ec81cc13b9ea87f712159b8ae143a592a15a Mon Sep 17 00:00:00 2001 From: Louis Date: Fri, 24 Nov 2023 11:55:09 +0700 Subject: [PATCH] fix: incorrect update progress bar visibility check --- web/containers/Layout/BottomBar/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/containers/Layout/BottomBar/index.tsx b/web/containers/Layout/BottomBar/index.tsx index 9153da2c7..1ff0b6414 100644 --- a/web/containers/Layout/BottomBar/index.tsx +++ b/web/containers/Layout/BottomBar/index.tsx @@ -31,7 +31,7 @@ const BottomBar = () => {
- {!progress && progress === 0 ? ( + {progress && progress > 0 ? ( ) : null}