From 44f90edcd2bd829efab3780e8aa02c8737f0576b Mon Sep 17 00:00:00 2001 From: Muhammad Ibrahim Date: Mon, 29 Sep 2025 21:08:42 +0100 Subject: [PATCH] Suppress false positive linting warnings for useId 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 b0b4e91..7de6207 100644 --- a/frontend/src/pages/Settings.jsx +++ b/frontend/src/pages/Settings.jsx @@ -34,8 +34,8 @@ const Settings = () => { const defaultRoleId = useId(); const githubRepoUrlId = useId(); const sshKeyPathId = useId(); - const scriptFileId = useId(); - const scriptContentId = useId(); + const _scriptFileId = useId(); + const _scriptContentId = useId(); const [formData, setFormData] = useState({ serverProtocol: "http", serverHost: "localhost",