Skip to content

Commit 4c8378e

Browse files
committed
fixup! Build out frontend
1 parent 63e790e commit 4c8378e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

site/src/components/WorkspaceBuildProgress/WorkspaceBuildProgress.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,7 @@ export const WorkspaceBuildProgress: FC<WorkspaceBuildProgressProps> = ({
117117
// (e.g. the build isn't yet running). If we flicker from the
118118
// indeterminate bar to the determinate bar, the vigilant user
119119
// perceives the bar jumping from 100% to 0%.
120-
progressValue !== undefined &&
121-
progressValue < 100 &&
122-
transitionStats !== undefined
120+
progressValue !== undefined && progressValue < 100
123121
? "determinate"
124122
: "indeterminate"
125123
}

0 commit comments

Comments
 (0)