chore: clean unused variable

This commit is contained in:
talksik
2026-03-19 11:33:53 -07:00
parent bdacc27e67
commit 89dd30a081
@@ -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() ?? "";