1472 dont highlight text when learners are doing listening activity (#1482)

* fix: don't highlight words while doing hwl activity

* fix: don't sort activity choices after the fact
This commit is contained in:
ggurdin 2025-01-16 14:06:35 -05:00 committed by GitHub
parent d2779eaf82
commit 61c722c704
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -188,7 +188,6 @@ class MultipleChoiceActivityState extends State<MultipleChoiceActivity> {
),
);
}
choices.sort((a, b) => a.text.length.compareTo(b.text.length));
return choices;
}