From 8b69bea6674b76879fffcfc118b3248505570f36 Mon Sep 17 00:00:00 2001 From: Nan Kyung Lee Date: Fri, 20 Mar 2026 07:27:47 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=95=9C=EA=B5=AD/=EC=A4=91=EA=B5=AD=20?= =?UTF-8?q?=EC=84=A0=EB=B0=95=20=ED=98=84=ED=99=A9=20=ED=8C=A8=EB=84=90=20?= =?UTF-8?q?=EA=B8=B0=EB=B3=B8=20=EC=A0=91=ED=9E=98=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/common/EventLog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/common/EventLog.tsx b/frontend/src/components/common/EventLog.tsx index 8294c08..be8818f 100644 --- a/frontend/src/components/common/EventLog.tsx +++ b/frontend/src/components/common/EventLog.tsx @@ -348,7 +348,7 @@ function useTimeAgo() { export function EventLog({ events, currentTime, totalShipCount: _totalShipCount, koreanShips, koreanShipsByCategory: _koreanShipsByCategory, chineseShips = [], osintFeed = EMPTY_OSINT, isLive = false, dashboardTab = 'iran', onTabChange: _onTabChange, ships = EMPTY_SHIPS, highlightKoreanShips = false, onToggleHighlightKorean, onShipHover, onShipClick }: Props) { const { t } = useTranslation(['common', 'events', 'ships']); const timeAgo = useTimeAgo(); - const [collapsed, setCollapsed] = useState>(new Set()); + const [collapsed, setCollapsed] = useState>(new Set(['kr-ships', 'cn-ships'])); const toggleCollapse = useCallback((key: string) => { setCollapsed(prev => { const next = new Set(prev);