From 5386fbb64126c64e226f0e0169f97e9f27671d65 Mon Sep 17 00:00:00 2001 From: Sriman Achanta <68172138+srimanachanta@users.noreply.github.com> Date: Tue, 22 Aug 2023 18:19:46 -0400 Subject: [PATCH] Update GeneralSettingsStore.ts --- photon-client/src/stores/settings/GeneralSettingsStore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);