From 79bf78252f08bcc5ebbd2b3da6610788c0e565d1 Mon Sep 17 00:00:00 2001 From: cirroskais Date: Mon, 18 Mar 2024 15:04:45 -0400 Subject: [PATCH] This might be it... --- src/App.svelte | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/App.svelte b/src/App.svelte index 9f0fabd..f636e25 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -4,9 +4,12 @@ let output = ""; async function main() { - const result = await authorize(); + const auth = await authorize(); + output += `auth: ${JSON.stringify(auth)}\n`; + if (!auth) return (output += `failed to authenticate :'c`); - output += `result: ${JSON.stringify(result)}\n`; + const activity = await setActivity(); + output += `activity: ${JSON.stringify(activity)}\n`; } main(); @@ -14,5 +17,5 @@

garf 2: eletric boogaloo

- {JSON.stringify(output, null, 4)} + {output}