From 0c19ddcbc7f932a7473b7049af4d8143798b175f Mon Sep 17 00:00:00 2001 From: talksik Date: Thu, 19 Mar 2026 16:00:43 -0700 Subject: [PATCH] fix: prevent unnecessary effects --- js/src/features/particles/stream-view.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/features/particles/stream-view.tsx b/js/src/features/particles/stream-view.tsx index 2ffef52..e1e3760 100644 --- a/js/src/features/particles/stream-view.tsx +++ b/js/src/features/particles/stream-view.tsx @@ -279,7 +279,7 @@ export function StreamView({ path, streamParticle }: StreamViewProps) { const streamDocPath = toFirestoreDocPath(path); updateStreamPlaybackMarker(streamDocPath, userId, currentParticle.created_at); - }, [currentParticle, path]) + }, [currentParticle?.id, path]) // Author info from current particle const authorEmail = currentParticle?.created_by_email ?? "";