From 1259e48681df8c705e5ec9b86ffc5382340cb09c Mon Sep 17 00:00:00 2001 From: legonzaur Date: Tue, 6 May 2025 14:12:54 +0200 Subject: [PATCH] chore: formatting update --- netcode/index.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/netcode/index.ts b/netcode/index.ts index 3e3a046..4f0175a 100644 --- a/netcode/index.ts +++ b/netcode/index.ts @@ -1,8 +1,8 @@ export function subscribe(endpoint: string) { - const config = useRuntimeConfig(); - const evtSource = new EventSource(config.public.endpoint + endpoint, { - withCredentials: true, - }); + const config = useRuntimeConfig(); + const evtSource = new EventSource(config.public.endpoint + endpoint, { + withCredentials: true, + }); - return evtSource; -} \ No newline at end of file + return evtSource; +}