From 56ea07bcba046f0d2c0a0270c0a422f4232f70fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois-Xavier=20Payet?= Date: Fri, 24 May 2024 10:59:05 +0200 Subject: [PATCH] fix(mobile): use correct Focus Node for latitude and longitude (#9699) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit FIx focus node for longitude Co-authored-by: François-Xavier Payet --- mobile/lib/widgets/common/location_picker.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/widgets/common/location_picker.dart b/mobile/lib/widgets/common/location_picker.dart index 1fca268d63..3be3ed428a 100644 --- a/mobile/lib/widgets/common/location_picker.dart +++ b/mobile/lib/widgets/common/location_picker.dart @@ -215,7 +215,7 @@ class _ManualPicker extends HookWidget { decorationText: "location_picker_longitude", hintText: "location_picker_longitude_hint", errorText: "location_picker_longitude_error", - focusNode: latitiudeFocusNode, + focusNode: longitudeFocusNode, validator: _validateLong, onUpdated: onLongitudeEditingCompleted, ),