Skip to content

Commit ac7e674

Browse files
committed
fix(app): broken
1 parent 47fa496 commit ac7e674

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/app/src/context/global-sync.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ function createGlobalSync() {
627627
}),
628628
),
629629
retry(() =>
630-
globalSDK.client.global.configGet().then((x) => {
630+
globalSDK.client.config.get().then((x) => {
631631
setGlobalStore("config", x.data!)
632632
}),
633633
),
@@ -682,7 +682,7 @@ function createGlobalSync() {
682682
bootstrap,
683683
updateConfig: async (config: Config) => {
684684
setGlobalStore("reload", "pending")
685-
const response = await globalSDK.client.global.configUpdate({ config })
685+
const response = await globalSDK.client.config.update({ config })
686686
setTimeout(() => {
687687
setGlobalStore("reload", "complete")
688688
}, 1000)

0 commit comments

Comments
 (0)