@@ -216,7 +216,7 @@ const zoomValueToFitBoundsOnViewport = (
Math.floor(smallestZoomValue / ZOOM_STEP) * ZOOM_STEP;
const clampedZoomValueToFitElements = Math.min(
Math.max(zoomAdjustedToSteps, ZOOM_STEP),
- 1,
+ // 1,
);
return clampedZoomValueToFitElements as NormalizedZoomValue;
};