diff --git a/js/src/features/particles/stream-view.tsx b/js/src/features/particles/stream-view.tsx index 4f9aba8..183ca1d 100644 --- a/js/src/features/particles/stream-view.tsx +++ b/js/src/features/particles/stream-view.tsx @@ -201,9 +201,6 @@ export function StreamView({ path, streamParticle }: StreamViewProps) { updateStreamPlaybackMarker(streamDocPath, userId, currentParticle.created_at); }, [currentParticle, path]) - // Stream name from properties (narrowed to stream type) - const streamName = streamParticle.properties.name - // Author info from current particle const authorEmail = currentParticle?.created_by_email ?? ""; const authorInitials = authorEmail.split("@")[0]?.slice(0, 2).toUpperCase() ?? "";