Change grammar threshold from 25 to 30 (#3689)

This commit is contained in:
Kelrap 2025-08-11 13:04:00 -04:00 committed by GitHub
parent 14f2401df7
commit 10d8fc26aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -154,7 +154,7 @@ class GetAnalyticsController extends BaseController {
final prevUnlockedMorphs = constructListModel
.unlockedLemmas(
ConstructTypeEnum.morph,
threshold: 25,
threshold: 30,
)
.toSet();
@ -166,7 +166,7 @@ class GetAnalyticsController extends BaseController {
final newUnlockedMorphs = constructListModel
.unlockedLemmas(
ConstructTypeEnum.morph,
threshold: 25,
threshold: 30,
)
.toSet()
.difference(prevUnlockedMorphs);