Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
f87a9ea
chore: untrack 5 snapshot JSONs re-committed after 46a731f
K1NGD4VID May 30, 2026
4a0b79e
fix(backend): add missing @vitest/coverage-v8 dev dependency
K1NGD4VID May 30, 2026
127c079
Merge branch 'main' into never-commit-test_snapshots
K1NGD4VID Jun 1, 2026
a135944
Merge branch 'LabsCrypt:main' into never-commit-test_snapshots
K1NGD4VID Jun 1, 2026
b22c8fc
fix(ci): fix malformed package-lock.json and resolve JSDoc YAMLSemant…
K1NGD4VID Jun 1, 2026
15ca84f
merge: resolve conflict in package-lock.json and sync upstream main
K1NGD4VID Jun 1, 2026
712a3e8
fix(frontend): resolve all ESLint warnings and React Compiler memoiza…
K1NGD4VID Jun 2, 2026
1b48187
fix: ensure proper cleanup of SSE events with AbortController
extolkom Jun 2, 2026
7a37285
Update README.md
dorismaduegbunam Jun 2, 2026
471aaf1
chore: replace err any with unknown and narrow safely
dubemoyibe-star Jun 2, 2026
b3a0f64
fix: resolve pagination magic numbers
devfoma Jun 2, 2026
2d8fb7b
Merge pull request #592 from K1NGD4VID/never-commit-test_snapshots
ogazboiz Jun 2, 2026
1c1b636
Merge pull request #736 from dubemoyibe-star/fix/error-middleware-unk…
ogazboiz Jun 2, 2026
3bf9e60
Merge pull request #739 from dorismaduegbunam/fix/pagination-magic-nu…
ogazboiz Jun 2, 2026
361663b
fix: ensure proper cleanup of SSE events with AbortController
extolkom Jun 2, 2026
42180ff
Merge branch 'main' of https://github.com/extolkom/flowfi
extolkom Jun 2, 2026
75d3237
fix: resolve setState in effect eslint error in streams page
extolkom Jun 2, 2026
d037bdf
fix: ensure useEffect returns cleanup in TransactionTracker
extolkom Jun 2, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions frontend/src/app/streams/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,14 @@ export default function StreamDetailsPage() {

// Handle SSE events
useEffect(() => {
const controller = new AbortController();

if (streamEvents.length > 0) {
const controller = new AbortController();
fetchStream(controller.signal);
fetchEvents(eventsPage, controller.signal);
return () => controller.abort();
}

return () => controller.abort();
}, [streamEvents, fetchStream, fetchEvents, eventsPage]);

// Live claimable counter
Expand Down
2 changes: 2 additions & 0 deletions frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
Expand Down
Loading