From 8b555b377b3cc68ef7d54ee83aabd73753c78319 Mon Sep 17 00:00:00 2001 From: talksik Date: Thu, 19 Mar 2026 11:40:34 -0700 Subject: [PATCH] remove unused imports --- js/src/features/layout.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/js/src/features/layout.tsx b/js/src/features/layout.tsx index c35664c..eec6008 100644 --- a/js/src/features/layout.tsx +++ b/js/src/features/layout.tsx @@ -12,11 +12,8 @@ import { } from "@/components/ui/breadcrumb"; import { Avatar, AvatarFallback } from "@/components/ui/avatar"; import { useNetworks } from "@/hooks/use-networks"; -import { particlePath, toFirestoreDocPath } from "@/lib/particle-path"; -import { useLiveParticle, useParticle } from "@/hooks/use-particle"; -import { useEffect } from "react"; -import { useQuery } from "@tanstack/react-query"; -import { getParticle } from "@/lib/firestore-particles"; +import { particlePath } from "@/lib/particle-path"; +import { useParticle } from "@/hooks/use-particle"; import type { Particle } from "@/api/types"; function getParticleDisplayName(particle: Particle): string {