fix: `className` error

This commit is contained in:
任帅 2023-09-19 16:19:00 +08:00
parent 39bb7fc510
commit 670c226a7c
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ const Progress: React.FC<React.PropsWithChildren<{
style={{ width: `${3 * percent}px` }}
/>
</div>
<span className='update-progress-num '>{(percent ?? 0).toString().substring(0, 4)}%</span>
<span className='update-progress-num'>{(percent ?? 0).toString().substring(0, 4)}%</span>
</div>
)
}