diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index a35cc2f..9948720 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,10 +4,9 @@
-
+
-
-
+
@@ -28,7 +27,7 @@
@@ -47,185 +46,192 @@
"state": "OPEN"
}
}
- {
- "prStates": [
+
+}]]>
{
"selectedUrlAndAccountId": {
"url": "https://github.com/iib0011/omni-tools.git",
@@ -285,7 +291,7 @@
"Vitest.replaceText function (regexp mode).should return the original text when passed an invalid regexp.executor": "Run",
"Vitest.replaceText function.executor": "Run",
"Vitest.timeBetweenDates.executor": "Run",
- "git-widget-placeholder": "#168 on fork/AshAnand34/merge-video-tool",
+ "git-widget-placeholder": "main",
"ignore.virus.scanning.warn.message": "true",
"kotlin-language-version-configured": "true",
"last_opened_file_path": "C:/Users/Ibrahima/IdeaProjects/omni-tools",
@@ -415,9 +421,9 @@
+
-
@@ -533,14 +539,6 @@
-
-
- 1747172914927
-
-
-
- 1747172914927
-
1748027090253
@@ -925,7 +923,15 @@
1752605940802
-
+
+
+ 1752805853344
+
+
+
+ 1752805853344
+
+
@@ -972,7 +978,6 @@
-
@@ -997,7 +1002,8 @@
-
+
+
false
diff --git a/src/components/input/ToolCodeInput.tsx b/src/components/input/ToolCodeInput.tsx
index fd6df78..c23553b 100644
--- a/src/components/input/ToolCodeInput.tsx
+++ b/src/components/input/ToolCodeInput.tsx
@@ -1,4 +1,4 @@
-import { Box } from '@mui/material';
+import { Box, useTheme } from '@mui/material';
import React, { useContext, useRef } from 'react';
import { CustomSnackBarContext } from '../../contexts/CustomSnackBarContext';
import InputHeader from '../InputHeader';
@@ -21,6 +21,7 @@ export default function ToolCodeInput({
const { t } = useTranslation();
const { showSnackBar } = useContext(CustomSnackBarContext);
const fileInputRef = useRef(null);
+ const theme = useTheme();
const handleCopy = () => {
navigator.clipboard
@@ -56,6 +57,7 @@ export default function ToolCodeInput({
onChange(value ?? '')}
/>