From dc21283afd18e7f440bf619c2cbada2729239470 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Mon, 11 Oct 2021 15:42:50 -0700 Subject: [PATCH] fix reference to fetch --- site/src/routes/apps/index.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/routes/apps/index.svelte b/site/src/routes/apps/index.svelte index e8bb11fe22..5d5df4bf79 100644 --- a/site/src/routes/apps/index.svelte +++ b/site/src/routes/apps/index.svelte @@ -8,7 +8,7 @@ if (page.query.offset) { url += `?offset=${encodeURIComponent(page.query.offset)}`; } - const r = await this.fetch(url, { + const r = await fetch(url, { credentials: 'include' }); if (!r.ok) return { status: r.status, body: await r.text() };