import { ShoppingBasket } from 'lucide-react' import { useHeapsQuery } from '../../hooks/useHeapsQuery' import muliLogo from '../../assets/muli-logo.png' /** * Slim top bar — just the logo and the active-heap pill. The search input * lives in the FilterBar now (next to the rest of the filter controls). */ export function TopBar() { const { data: heapsList = [] } = useHeapsQuery() const activeHeap = heapsList.find((h) => h.is_active) return (
Mulimago

Mulimago

{activeHeap && ( {activeHeap.name} )}
) }