diff --git a/frontend/src/pages/Settings.jsx b/frontend/src/pages/Settings.jsx index 175f299..b0b4e91 100644 --- a/frontend/src/pages/Settings.jsx +++ b/frontend/src/pages/Settings.jsx @@ -24,8 +24,18 @@ import { } from "../utils/api"; const Settings = () => { - const _scriptFileId = useId(); - const _scriptContentId = useId(); + const repoPublicId = useId(); + const repoPrivateId = useId(); + const useCustomSshKeyId = useId(); + const protocolId = useId(); + const hostId = useId(); + const portId = useId(); + const updateIntervalId = useId(); + const defaultRoleId = useId(); + const githubRepoUrlId = useId(); + const sshKeyPathId = useId(); + const scriptFileId = useId(); + const scriptContentId = useId(); const [formData, setFormData] = useState({ serverProtocol: "http", serverHost: "localhost",