From 670c226a7c3a889208d4e36b829e93d8bdb70f5d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E4=BB=BB=E5=B8=85?= <1064425721@qq.com>
Date: Tue, 19 Sep 2023 16:19:00 +0800
Subject: [PATCH] fix: `className` error
---
src/components/update/Progress/index.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/update/Progress/index.tsx b/src/components/update/Progress/index.tsx
index de018e8..1701dc5 100644
--- a/src/components/update/Progress/index.tsx
+++ b/src/components/update/Progress/index.tsx
@@ -14,7 +14,7 @@ const Progress: React.FC
- {(percent ?? 0).toString().substring(0, 4)}%
+ {(percent ?? 0).toString().substring(0, 4)}%
)
}