Skip to content

Commit 3ccbb21

Browse files
author
김병윤
committed
[FIX] 타이머에서 소수점이 나오지 않도록 변경
1 parent 0749685 commit 3ccbb21

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/Game/QuestionPhase/Timer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default function Timer() {
2525
}, 1000);
2626

2727
const minutes = Math.floor(timer / 60);
28-
const seconds = timer % 60;
28+
const seconds = Math.floor(timer % 60);
2929

3030
return (
3131
<Box sx={{ color: votes ? 'gray' : 'white' }} display="flex" justifyContent="center">

0 commit comments

Comments
 (0)