update ee-ref

This commit is contained in:
Ruben Fiszel
2025-07-19 21:38:00 +00:00
parent 3618160573
commit db0b271ff2
2 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
e2bbcda64a9eb783d0832bc6f764be1627046961
5ee3df2b86049b8fb5808d7024e27785ae6415e8
+5 -1
View File
@@ -265,7 +265,11 @@
}
function supportsSSE() {
return typeof EventSource !== 'undefined'
const sseSupported = typeof EventSource !== 'undefined'
if (!sseSupported) {
console.error('SSE not supported, falling back to polling')
}
return sseSupported
}
let startedWatchingJob: number | undefined = undefined