Skip to content

Commit

Permalink
fix: リンターの警告に対応
Browse files Browse the repository at this point in the history
  • Loading branch information
Kogepan229 authored and watasuke102 committed Dec 2, 2023
1 parent fe2202f commit 4cefe13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions front/src/components/pages/exam/exam.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export default function ExamPageComponent(props: Props): JSX.Element {
// スクロールをリセット
// 正解が下に表示される場合はリセットしない
if (document.body.clientWidth > 700) {
window.scrollTo({ top: 0 })
window.scrollTo({ top: 0 });
}
}
break;
Expand All @@ -275,7 +275,7 @@ export default function ExamPageComponent(props: Props): JSX.Element {
}

// スクロールをリセット
window.scrollTo({ top: 0 })
window.scrollTo({ top: 0 });
break;

// 終了ボタンを押したらモーダルウィンドウを表示
Expand All @@ -289,7 +289,7 @@ export default function ExamPageComponent(props: Props): JSX.Element {
// indexの変更
ChangeIndex(index_ref.current - 1);
// スクロールをリセット
window.scrollTo({ top: 0 })
window.scrollTo({ top: 0 });
}

function NextButton(): React.ReactElement {
Expand Down

0 comments on commit 4cefe13

Please sign in to comment.