chore(minimap): use 1 as a default for zoom step

This commit is contained in:
moklick
2025-08-12 12:44:49 +02:00
parent 144f8feb0f
commit 9fa0779664
2 changed files with 6 additions and 7 deletions
@@ -65,7 +65,7 @@ function MiniMapComponent<NodeType extends Node = Node>({
zoomable = false,
ariaLabel,
inversePan,
zoomStep = 10,
zoomStep = 1,
offsetScale = 5,
}: MiniMapProps<NodeType>) {
const store = useStoreApi<NodeType>();