Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frontend/src/ts/components/modals/CustomTestDurationModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { restartTestEvent } from "../../events/test";
import { hideModalAndClearChain } from "../../states/modals";
import { showNoticeNotification } from "../../states/notifications";
import { AnimatedModal } from "../common/AnimatedModal";
import { CommandlineHotkey } from "../hotkeys/CommandlineHotkey";
import { InputField } from "../ui/form/InputField";
import { SubmitButton } from "../ui/form/SubmitButton";

Expand Down Expand Up @@ -92,8 +93,7 @@ export function CustomTestDurationModal(): JSXElement {
<br />
You can start an infinite test by inputting 0. Then, to stop the test,
use the Bail Out feature:
<br />(<kbd>esc</kbd> or <kbd>ctrl/cmd</kbd> + <kbd>shift</kbd> +{" "}
<kbd>p</kbd> &gt; Bail Out)
<br />(<CommandlineHotkey /> &gt; Bail Out)
</div>
<SubmitButton
form={form}
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/ts/components/modals/CustomWordAmountModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { restartTestEvent } from "../../events/test";
import { hideModalAndClearChain } from "../../states/modals";
import { showNoticeNotification } from "../../states/notifications";
import { AnimatedModal } from "../common/AnimatedModal";
import { CommandlineHotkey } from "../hotkeys/CommandlineHotkey";
import { InputField } from "../ui/form/InputField";
import { SubmitButton } from "../ui/form/SubmitButton";

Expand Down Expand Up @@ -68,8 +69,7 @@ export function CustomWordAmountModal(): JSXElement {
<div class="text-xs">
You can start an infinite test by inputting 0. Then, to stop the test,
use the Bail Out feature:
<br />(<kbd>esc</kbd> or <kbd>ctrl/cmd</kbd> + <kbd>shift</kbd> +{" "}
<kbd>p</kbd> &gt; Bail Out)
<br />(<CommandlineHotkey /> &gt; Bail Out)
</div>
<SubmitButton
form={form}
Expand Down
Loading