summaryrefslogtreecommitdiff
path: root/frontend/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/index.ts')
-rw-r--r--frontend/src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/index.ts b/frontend/src/index.ts
index 1ca06b0e..91324b4f 100644
--- a/frontend/src/index.ts
+++ b/frontend/src/index.ts
@@ -2,7 +2,7 @@
(async () => {
console.debug('Setting up decky-frontend-lib...');
window.DFL = await import('decky-frontend-lib');
- console.debug('Authenticating to Decky backend...');
+ console.debug('Authenticating with Decky backend...');
window.deckyAuthToken = await fetch('http://127.0.0.1:1337/auth/token').then((r) => r.text());
console.debug('Connecting to Decky backend...');
window.DeckyBackend = new (await import('./wsrouter')).WSRouter();