From 55f172de3b2ba2dcb855f19627e945e24b90d4bb Mon Sep 17 00:00:00 2001 From: amania-jailbreak Date: Wed, 5 Aug 2026 16:21:46 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20dashboard-view.tsx=20=E3=81=A7=20lucide-?= =?UTF-8?q?react=20=E3=81=AE=20Boxes=20import=20=E3=81=8C=E6=AC=A0?= =?UTF-8?q?=E8=90=BD=E3=81=97=E3=81=A6=E3=81=84=E3=81=9F=E3=81=AE=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sourceが空のWorkspaceで Overview を開くと ReferenceError: Boxes is not defined が発生して画面がクラッシュするため、import に Boxes を追加した。 --- components/altdock/dashboard-view.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/altdock/dashboard-view.tsx b/components/altdock/dashboard-view.tsx index 9298a45..c8f4fab 100644 --- a/components/altdock/dashboard-view.tsx +++ b/components/altdock/dashboard-view.tsx @@ -2,7 +2,7 @@ import { useEffect, useState, type FormEvent, type ReactNode } from "react"; import { useRouter, useSearchParams } from "next/navigation"; -import { Activity, ArrowUpRight, ChevronRight, Clipboard, Code2, Copy, Database, ExternalLink, Filter, HardDrive, Pencil, Plus, RefreshCw, Search, ShieldCheck, UploadCloud, XCircle, type LucideIcon } from "lucide-react"; +import { Activity, ArrowUpRight, Boxes, ChevronRight, Clipboard, Code2, Copy, Database, ExternalLink, Filter, HardDrive, Pencil, Plus, RefreshCw, Search, ShieldCheck, UploadCloud, XCircle, type LucideIcon } from "lucide-react"; import type { AppRecord, ReleaseRecord, SourceRecord } from "@/packages/core/src/index"; import { API_BASE, flattenApps, flattenReleases, formatBytes, formatDate, formatDateTime, statusLabel, statusTone, visibilityLabel, visibilityTone, type DashboardData, type DashboardSource, type Visibility } from "@/app/lib/dashboard"; import { useDashboard } from "./dashboard-provider";