chore: If IGC change is different by a whitespace, apply automatically

This commit is contained in:
ggurdin 2026-01-23 12:55:07 -05:00
parent 49c0485cdd
commit f1ddd0408e
No known key found for this signature in database
GPG key ID: A01CB41737CBB478

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,