diff --git a/photon-client/src/stores/settings/GeneralSettingsStore.ts b/photon-client/src/stores/settings/GeneralSettingsStore.ts index b3d5711244..0697af1251 100644 --- a/photon-client/src/stores/settings/GeneralSettingsStore.ts +++ b/photon-client/src/stores/settings/GeneralSettingsStore.ts @@ -27,7 +27,7 @@ export const useSettingsStore = defineStore("settings", { }, network: { ntServerAddress: "", - shouldMange: true, + shouldManage: true, connectionType: NetworkConnectionType.DHCP, staticIp: "", hostname: "photonvision", @@ -91,7 +91,7 @@ export const useSettingsStore = defineStore("settings", { runNTServer: this.network.runNTServer, setDHCPcommand: this.network.setDHCPcommand || "", setStaticCommand: this.network.setStaticCommand || "", - shouldMange: this.network.shouldMange, + shouldManage: this.network.shouldManage, staticIp: this.network.staticIp }; return axios.post("/settings/general", payload);