fix: incorrect update progress bar visibility check
This commit is contained in:
parent
25e8dccee9
commit
db17ec81cc
@ -31,7 +31,7 @@ const BottomBar = () => {
|
||||
<div className="fixed bottom-0 left-16 z-20 flex h-12 w-[calc(100%-64px)] items-center justify-between border-t border-border bg-background/50 px-3">
|
||||
<div className="flex flex-shrink-0 items-center gap-x-2">
|
||||
<div className="flex items-center space-x-2">
|
||||
{!progress && progress === 0 ? (
|
||||
{progress && progress > 0 ? (
|
||||
<ProgressBar total={100} used={progress} />
|
||||
) : null}
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user