use action from store instead of directly modifying state in components

This commit is contained in:
pa
2026-03-08 20:15:37 +09:00
parent 3d3ad27ca0
commit eeb5288027
13 changed files with 61 additions and 8 deletions

View File

@@ -102,7 +102,7 @@
}
async function saveProxy() {
vrcxStore.proxyServer = proxyServerLocal.value;
vrcxStore.setProxyServer(proxyServerLocal.value);
await VRCXStorage.Set('VRCX_ProxyServer', vrcxStore.proxyServer);
await VRCXStorage.Save();
}