diff --git a/src/renderer/src/BottomBar.tsx b/src/renderer/src/BottomBar.tsx
index 3670cd92..da33c4fa 100644
--- a/src/renderer/src/BottomBar.tsx
+++ b/src/renderer/src/BottomBar.tsx
@@ -60,7 +60,7 @@ const InvertCutModeButton = memo(({ invertCutSegments, setInvertCutSegments }: {
diff --git a/src/renderer/src/SegmentList.tsx b/src/renderer/src/SegmentList.tsx
index df1fae85..18e8e77f 100644
--- a/src/renderer/src/SegmentList.tsx
+++ b/src/renderer/src/SegmentList.tsx
@@ -382,7 +382,7 @@ function SegmentList({
if (segmentsOrInverse.length === 0) {
if (invertCutSegments) {
return (
- You have enabled the "invert segments" mode which will cut away selected segments instead of keeping them. But there is no space between any segments, or at least two segments are overlapping. This would not produce any output. Either make room between segments or click the Yinyang symbol below to disable this mode. Alternatively you may combine overlapping segments from the menu.
+ You have enabled the "invert segments" mode which will cut away selected segments instead of keeping them. But there is no space between any segments, or at least two segments are overlapping. This would not produce any output. Either make room between segments or click the Yinyang symbol below to disable this mode. Alternatively you may combine overlapping segments from the menu.
);
}
return t('No segments to export.');
diff --git a/src/renderer/src/components/AutoExportToggler.tsx b/src/renderer/src/components/AutoExportToggler.tsx
index c00e4b9e..d1211ac8 100644
--- a/src/renderer/src/components/AutoExportToggler.tsx
+++ b/src/renderer/src/components/AutoExportToggler.tsx
@@ -4,6 +4,7 @@ import { FaBan, FaFileExport } from 'react-icons/fa';
import useUserSettings from '../hooks/useUserSettings';
import Button from './Button';
+import { dangerColor } from '../colors';
function AutoExportToggler() {
const { t } = useTranslation();
@@ -13,7 +14,7 @@ function AutoExportToggler() {
return (
);
}
diff --git a/src/renderer/src/components/Settings.tsx b/src/renderer/src/components/Settings.tsx
index ec8433d6..deae1b75 100644
--- a/src/renderer/src/components/Settings.tsx
+++ b/src/renderer/src/components/Settings.tsx
@@ -17,7 +17,7 @@ import ButtonRaw, { ButtonProps } from './Button';
import { getModifierKeyNames } from '../hooks/useTimelineScroll';
import { TunerType } from '../types';
import Truncated from './Truncated';
-import { primaryColor } from '../colors';
+import { dangerColor } from '../colors';
// eslint-disable-next-line react/jsx-props-no-spreading
const Button = ({ style, ...props }: ButtonProps) => ;
@@ -227,7 +227,7 @@ function Settings({