From 0c97bc8c3f83c9dca9e92181d9dc5bc718d0c4e9 Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Wed, 25 Jun 2025 23:08:31 +0200 Subject: [PATCH] refactor: remov eunused things --- apps/web/src/components/editor-header.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/web/src/components/editor-header.tsx b/apps/web/src/components/editor-header.tsx index 6f9f0b2..5131230 100644 --- a/apps/web/src/components/editor-header.tsx +++ b/apps/web/src/components/editor-header.tsx @@ -3,13 +3,11 @@ import Link from "next/link"; import { Button } from "./ui/button"; import { ChevronLeft, Download } from "lucide-react"; -import { useProjectStore } from "@/stores/project-store"; import { useTimelineStore } from "@/stores/timeline-store"; import { HeaderBase } from "./header-base"; import { ProjectNameEditor } from "./editor/project-name-editor"; export function EditorHeader() { - const { activeProject } = useProjectStore(); const { getTotalDuration } = useTimelineStore(); const handleExport = () => {