From 20f61924366d66bd7cda59a4370fd73211be289b Mon Sep 17 00:00:00 2001 From: zojgame Date: Thu, 7 Mar 2024 17:27:50 +0500 Subject: [PATCH] loader fix --- src/components/LoaderModal.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/LoaderModal.tsx b/src/components/LoaderModal.tsx index ab85618..f1b9f0a 100644 --- a/src/components/LoaderModal.tsx +++ b/src/components/LoaderModal.tsx @@ -75,13 +75,13 @@ type LoaderModalWithStatusProps = { const LoaderModalWithStatus = ({ status }: LoaderModalWithStatusProps) => { return ( <> - {status !== 0 && ( -
-
- {status}% -
-
- )} +
+
{status}%
+
); };