From 0297114faff912917e3c52e49f889e3a0da32160 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Mon, 13 Apr 2026 15:14:48 +0000 Subject: [PATCH] Remove unnecessary null coalesce --- ts/components/MapLocator.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/components/MapLocator.vue b/ts/components/MapLocator.vue index 1c7f3cd3..202baacd 100644 --- a/ts/components/MapLocator.vue +++ b/ts/components/MapLocator.vue @@ -387,7 +387,7 @@ const frameMarkers = () => { lat: props.markers[0].location.latitude, lng: props.markers[0].location.longitude, }, - { duration: 1000, zoom: props.modelValue?.zoom }, + { duration: 1000, zoom: props.modelValue.zoom }, { isInternalUpdate: true }, ); } else {