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:
ggurdin 2026-01-23 12:55:31 -05:00 committed by GitHub
commit aa29473fbb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,