From 2a147c00f6d53f13d6e367bca07ba632c8905cf7 Mon Sep 17 00:00:00 2001 From: jubnl Date: Tue, 16 Jun 2026 21:54:48 +0200 Subject: [PATCH] feat(transports): add kitinerary import-from-file button to Transports tab --- 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 a84d9c83..bbf63c28 100644 --- a/client/src/pages/TripPlannerPage.tsx +++ b/client/src/pages/TripPlannerPage.tsx @@ -636,6 +636,8 @@ export default function TripPlannerPage(): React.ReactElement | null { assignments={assignments} files={files} onAdd={() => { setEditingTransport(null); setShowTransportModal(true) }} + onImport={() => setShowBookingImport(true)} + bookingImportAvailable={bookingImportAvailable} onAirTrailImport={() => setShowAirTrailImport(true)} airTrailAvailable={airTrailAvailable} onEdit={(r) => { setEditingTransport(r); setShowTransportModal(true) }}