Skip to content

Commit

Permalink
[menu-bar] Fix progress indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrieldonadel committed Aug 10, 2023
1 parent 1993a62 commit 7a05246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/menu-bar/src/popover/Core.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ function Core(props: Props) {
<View px="medium">
<ProgressIndicator
progress={status === Status.DOWNLOADING ? progress : undefined}
indeterminate={status === Status.INSTALLING ? true : undefined}
indeterminate={status === Status.INSTALLING}
key={status}
/>
<Text>
Expand Down

0 comments on commit 7a05246

Please sign in to comment.