Merge pull request #5404 from pangeachat/5392-if-igc-change-is-different-by-a-whitespace-apply-automatically
chore: If IGC change is different by a whitespace, apply automatically
This commit is contained in:
commit
aa29473fbb
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ String normalizeString(String input, String languageCode) {
|
|||
);
|
||||
|
||||
// Step 5: Normalize whitespace (collapse multiple spaces, trim)
|
||||
return normalized.replaceAll(RegExp(r'\s+'), ' ').trim();
|
||||
return normalized.replaceAll(RegExp(r'\s+'), '').trim();
|
||||
} catch (e, s) {
|
||||
ErrorHandler.logError(
|
||||
e: e,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue