TF-1687: Fix EmailTitle is cut off at the wrong place

(cherry picked from commit 855b39d79da371b733be10ad569e304fec5e8b75)
This commit is contained in:
HuyNguyen
2023-04-27 23:33:32 +07:00
committed by Dat Vu
parent 0f4ae09f2f
commit 136a40b0e3
3 changed files with 5 additions and 5 deletions
@@ -42,7 +42,6 @@ extension StringExtension on String {
String get withUnicodeCharacter {
return characters
.replaceAll(Characters(' '), Characters('\u{00A0}'))
.replaceAll(Characters('-'), Characters('\u{2011}'))
.toString();
}