From a6e44872e9d6237f73fd3a8fdcc55232135a6aed Mon Sep 17 00:00:00 2001 From: Davide Date: Thu, 16 Jan 2025 00:55:12 +0100 Subject: [PATCH] Select country by typing on macOS Fixes #1062 --- Packages/App/Sources/UILibrary/Theme/UI/Theme+Views.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Packages/App/Sources/UILibrary/Theme/UI/Theme+Views.swift b/Packages/App/Sources/UILibrary/Theme/UI/Theme+Views.swift index ac6b0dca..01e5b513 100644 --- a/Packages/App/Sources/UILibrary/Theme/UI/Theme+Views.swift +++ b/Packages/App/Sources/UILibrary/Theme/UI/Theme+Views.swift @@ -116,7 +116,7 @@ public struct ThemeCountryText: View { public var body: some View { Text( - [code.asCountryCodeEmoji, title] + [title, code.asCountryCodeEmoji] .compactMap { $0 } .joined(separator: " ") )