We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47fa496 commit ac7e674Copy full SHA for ac7e674
packages/app/src/context/global-sync.tsx
@@ -627,7 +627,7 @@ function createGlobalSync() {
627
}),
628
),
629
retry(() =>
630
- globalSDK.client.global.configGet().then((x) => {
+ globalSDK.client.config.get().then((x) => {
631
setGlobalStore("config", x.data!)
632
633
@@ -682,7 +682,7 @@ function createGlobalSync() {
682
bootstrap,
683
updateConfig: async (config: Config) => {
684
setGlobalStore("reload", "pending")
685
- const response = await globalSDK.client.global.configUpdate({ config })
+ const response = await globalSDK.client.config.update({ config })
686
setTimeout(() => {
687
setGlobalStore("reload", "complete")
688
}, 1000)
0 commit comments