Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-capellari committed Nov 24, 2023
1 parent aa94bc0 commit 885ee7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/task-tree-stats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default function TaskTreeStats({ manager }: TaskTreeStatsProps) {
return (
<Text>
{ (stats.running !== 0) && (
<><Spinner type="sand" /> <Text bold>{ stats.running }</Text> running</>
<><Spinner type={'sand' as 'dots'} /> <Text bold>{ stats.running }</Text> running</>
) }
{ (stats.running !== 0 && stats.done !== 0) && (<>, </>) }
{ (stats.done !== 0) && (
Expand Down

0 comments on commit 885ee7d

Please sign in to comment.