From e9843f80f877dcdeca6ac8122fe129dc3cfaf25b Mon Sep 17 00:00:00 2001 From: Muhammad Ibrahim Date: Mon, 29 Sep 2025 20:42:29 +0100 Subject: [PATCH] Fix linting warnings for unused variables --- frontend/src/pages/Settings.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/Settings.jsx b/frontend/src/pages/Settings.jsx index a744906..175f299 100644 --- a/frontend/src/pages/Settings.jsx +++ b/frontend/src/pages/Settings.jsx @@ -24,8 +24,8 @@ import { } from "../utils/api"; const Settings = () => { - const scriptFileId = useId(); - const scriptContentId = useId(); + const _scriptFileId = useId(); + const _scriptContentId = useId(); const [formData, setFormData] = useState({ serverProtocol: "http", serverHost: "localhost",