fix: prevent unnecessary effects

This commit is contained in:
talksik
2026-03-19 16:00:43 -07:00
parent f46c228243
commit 0c19ddcbc7
+1 -1
View File
@@ -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 ?? "";