From 2c0894b33021ebdb90bcd1b9adae8492c7f3e787 Mon Sep 17 00:00:00 2001 From: Maurice Date: Sat, 18 Apr 2026 01:48:53 +0200 Subject: [PATCH] fix(types): add missing map_booking_labels to Settings interface The booking-labels toggle from the transport-routes-on-map change was reading and writing settings.map_booking_labels without the key being declared on the Settings type, so the store typing was inconsistent. Adds it as an optional boolean to match the other display toggles. --- client/src/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/types.ts b/client/src/types.ts index 4bcfa22a..5d841c64 100644 --- a/client/src/types.ts +++ b/client/src/types.ts @@ -212,6 +212,7 @@ export interface Settings { show_place_description: boolean route_calculation?: boolean blur_booking_codes?: boolean + map_booking_labels?: boolean } export interface AssignmentsMap {