From d90a059dfa7181414492fb64dd6aa0db5f341000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rnyi=20M=C3=A1rk?= Date: Mon, 30 Mar 2026 00:52:41 +0200 Subject: [PATCH] pass leftWidth/rightWidth from TripPlannerPage to DayDetailPanel --- client/src/pages/TripPlannerPage.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/pages/TripPlannerPage.tsx b/client/src/pages/TripPlannerPage.tsx index de659f8..6a9c4d7 100644 --- a/client/src/pages/TripPlannerPage.tsx +++ b/client/src/pages/TripPlannerPage.tsx @@ -542,6 +542,8 @@ export default function TripPlannerPage(): React.ReactElement | null { lng={geoPlace?.lng} onClose={() => setShowDayDetail(null)} onAccommodationChange={loadAccommodations} + leftWidth={leftCollapsed ? 0 : leftWidth} + rightWidth={rightCollapsed ? 0 : rightWidth} /> ) })()}