Skip to content

Commit

Permalink
fix(style): progress pulse as unexpected
Browse files Browse the repository at this point in the history
  • Loading branch information
GZTimeWalker committed May 12, 2024
1 parent 6171a8e commit 728cffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GZCTF/ClientApp/src/components/GameProgress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const GameProgress: FC<GameProgressProps> = (props: GameProgressProps) => {
const theme = useMantineTheme()
const { colorScheme } = useMantineColorScheme()

const pulsing = percentage <= 100
const pulsing = percentage < 100
const resolvedColor = pulsing
? colorScheme === 'dark'
? 'light'
Expand Down

0 comments on commit 728cffb

Please sign in to comment.