Remove unnecessary null coalesce

This commit is contained in:
Eli Ribble 2026-04-13 15:14:48 +00:00
parent dddeafe6cd
commit 0297114faf
No known key found for this signature in database

View file

@ -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 {