Skip to content

Commit 65194dd

Browse files
committed
frontend: fix formatting
1 parent d736879 commit 65194dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/standings/StandingsTable.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ function TeamProblemCol({
291291
let status;
292292
let content;
293293
if (solved) {
294-
status = (siteconfig.features.firstAc && isFirst) ? 'solved-first' : 'solved';
294+
status = siteconfig.features.firstAc && isFirst ? 'solved-first' : 'solved';
295295
const hour = Math.floor(penalty / 60 / 60);
296296
const minute = Math.floor(penalty / 60) % 60;
297297
const second = Math.floor(penalty) % 60;

0 commit comments

Comments
 (0)