Skip to content

Commit 728cffb

Browse files
committed
fix(style): progress pulse as unexpected
1 parent 6171a8e commit 728cffb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GZCTF/ClientApp/src/components/GameProgress.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const GameProgress: FC<GameProgressProps> = (props: GameProgressProps) => {
2424
const theme = useMantineTheme()
2525
const { colorScheme } = useMantineColorScheme()
2626

27-
const pulsing = percentage <= 100
27+
const pulsing = percentage < 100
2828
const resolvedColor = pulsing
2929
? colorScheme === 'dark'
3030
? 'light'

0 commit comments

Comments
 (0)