fix: remove settings option from stream-view #277

Merged
talksik merged 2 commits from cleanup-stream-view-options into main 2026-06-11 23:51:37 +00:00
Showing only changes of commit 6ebf4abc72 - Show all commits
@@ -1,5 +1,4 @@
import { useState } from 'react';
import { useNavigate } from 'react-router-dom';
import { useAuthStore } from '@/stores/auth-store';
import { apiClient } from '@/api/client';
import { isParticleDeleted, type Particle } from '@/api/types';
@@ -72,7 +71,6 @@ interface TopBarProps {
}
export function TopBar({ networkId, particle, streamParticle }: TopBarProps) {
const navigate = useNavigate();
const network = useNetwork(networkId);
const userId = useAuthStore((s) => s.user?.id);
const isCreator = !!userId && userId === streamParticle.created_by_human_id;