chore: formatting update

This commit is contained in:
2025-05-06 14:12:54 +02:00
parent fe20d040ad
commit 1259e48681
+5 -5
View File
@@ -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;
return evtSource;
}