diff --git a/frontend/src/pages/Settings/Subtitles/index.tsx b/frontend/src/pages/Settings/Subtitles/index.tsx
index a2250e5a9..a2e05a5c5 100644
--- a/frontend/src/pages/Settings/Subtitles/index.tsx
+++ b/frontend/src/pages/Settings/Subtitles/index.tsx
@@ -1,5 +1,5 @@
-import { FunctionComponent } from "react";
-import { Code, Space, Table } from "@mantine/core";
+import React, { FunctionComponent } from "react";
+import { Code, Space, Table, Text as MantineText } from "@mantine/core";
import {
Check,
CollapseBox,
@@ -115,14 +115,16 @@ const commandOptions: CommandOption[] = [
},
];
-const commandOptionElements: JSX.Element[] = commandOptions.map((op, idx) => (
-
-
- {op.option}
- |
- {op.description} |
-
-));
+const commandOptionElements: React.JSX.Element[] = commandOptions.map(
+ (op, idx) => (
+
+
+ {op.option}
+ |
+ {op.description} |
+
+ ),
+);
const SettingsSubtitlesView: FunctionComponent = () => {
return (
@@ -436,8 +438,11 @@ const SettingsSubtitlesView: FunctionComponent = () => {
- Only series subtitles with scores below this value will be
- automatically synchronized.
+ Only series subtitles with scores{" "}
+
+ below
+ {" "}
+ this value will be automatically synchronized.
{
- Only movie subtitles with scores below this value will be
- automatically synchronized.
+ Only movie subtitles with scores{" "}
+
+ below
+ {" "}
+ this value will be automatically synchronized.
@@ -478,8 +486,11 @@ const SettingsSubtitlesView: FunctionComponent = () => {
- Only series subtitles with scores below this value will be
- automatically post-processed.
+ Only series subtitles with scores{" "}
+
+ below
+ {" "}
+ this value will be automatically post-processed.
{
- Only movie subtitles with scores below this value will be
- automatically post-processed.
+ Only movie subtitles with scores{" "}
+
+ below
+ {" "}
+ this value will be automatically post-processed.