fix(app): wrong api url format for events

This commit is contained in:
dextmorgn
2025-10-31 14:18:51 +01:00
parent cdf754ece6
commit dc52a624ef
+1 -1
View File
@@ -30,7 +30,7 @@ export function useEvents(sketch_id: string | undefined) {
if (!sketch_id) return
const eventSource = new EventSource(
`${API_URL}api/events/sketch/${sketch_id}/stream`
`${API_URL}/api/events/sketch/${sketch_id}/stream`
)
eventSource.onmessage = (e) => {