chore: don't restrict token length (#5112)

This commit is contained in:
ggurdin 2026-01-07 11:58:10 -05:00 committed by GitHub
parent 1b6dd5bd3f
commit 4112fd2a37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -159,8 +159,7 @@ class HtmlMessage extends StatelessWidget {
?.where(
(t) =>
!["SYM"].contains(t.pos) &&
!t.lemma.text.contains(RegExp(r'[0-9]')) &&
t.lemma.text.length <= 50,
!t.lemma.text.contains(RegExp(r'[0-9]')),
)
.toList();