From 4a52bc04fbf65df648fc185161f674372b52e9fe Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Mon, 1 Sep 2025 23:12:31 +0200 Subject: [PATCH] Fix warning --- src/messagecontent/LiveLocationComponent.qml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/messagecontent/LiveLocationComponent.qml b/src/messagecontent/LiveLocationComponent.qml index dd8b5d466..b645314d1 100644 --- a/src/messagecontent/LiveLocationComponent.qml +++ b/src/messagecontent/LiveLocationComponent.qml @@ -63,10 +63,9 @@ ColumnLayout { TapHandler { acceptedButtons: Qt.LeftButton onTapped: { - let map = fullScreenMap.createObject(parent, { + fullScreenMap.createObject(parent, { liveLocationModel: liveLocationModel - }); - map.open(); + }) } } Connections {