Skip to content

Commit 55650a5

Browse files
committed
remove proxyUrl
1 parent 9582fcd commit 55650a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/utils/cloud/customrest.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export function createCustomRESTClient(store: SyncStore) {
1717
const res = await fetch(this.path("get", storeKey), {
1818
method: "GET",
1919
headers: this.headers(),
20-
proxyUrl,
20+
//proxyUrl,
2121
mode: "cors",
2222
});
2323

@@ -37,7 +37,7 @@ export function createCustomRESTClient(store: SyncStore) {
3737
const res = await fetch(this.path("get", storeKey), {
3838
method: "GET",
3939
headers: this.headers(),
40-
proxyUrl,
40+
//proxyUrl,
4141
mode: "cors",
4242
});
4343

@@ -60,7 +60,7 @@ export function createCustomRESTClient(store: SyncStore) {
6060
method: "POST",
6161
headers: this.headers(),
6262
body: value,
63-
proxyUrl,
63+
//proxyUrl,
6464
mode: "cors",
6565
})
6666
.then((res) => {

0 commit comments

Comments
 (0)