diff --git a/packages/smooth_app/lib/pages/prices/emoji_helper.dart b/packages/smooth_app/lib/pages/prices/emoji_helper.dart index 5b56715dccf..57a5d2b6aff 100644 --- a/packages/smooth_app/lib/pages/prices/emoji_helper.dart +++ b/packages/smooth_app/lib/pages/prices/emoji_helper.dart @@ -17,7 +17,10 @@ class EmojiHelper { static String? getEmojiByCountryCode(final String countryCode) { if (countryCode.isEmpty) { return null; + } else if (countryCode.toUpperCase() == 'UK') { + return _getCountryEmojiFromUnicode('GB'); } + return _getCountryEmojiFromUnicode(countryCode); }