From e57a2f9b93f92929603f5b9ab85c5bba22628091 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 26 Apr 2024 12:45:54 +0200 Subject: [PATCH] Relax import zoomlevel --- src/UI/Popup/ImportButtons/ImportFlow.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/Popup/ImportButtons/ImportFlow.ts b/src/UI/Popup/ImportButtons/ImportFlow.ts index e9f193c9f..959472692 100644 --- a/src/UI/Popup/ImportButtons/ImportFlow.ts +++ b/src/UI/Popup/ImportButtons/ImportFlow.ts @@ -188,7 +188,7 @@ export default abstract class ImportFlow { return { error: new Translation({ "*": e }) } } - if (state.mapProperties.zoom.data < 18) { + if (state.mapProperties.zoom.data < 16) { return { error: t.zoomInMore } }