add auto update for android
All checks were successful
Release Build / build-docker (push) Successful in 41s
Release Build / build-android-and-release (push) Successful in 2m35s

This commit is contained in:
Rene Kievits
2025-12-26 22:57:40 +01:00
parent 8552b44ffd
commit 3da110d6cc
12 changed files with 103 additions and 7 deletions

View File

@@ -93,7 +93,7 @@ export const getUserStats = async (user) => {
accuracy: Math.round((item.stats.correct / item.stats.total) * 100)
})).filter(i => i.accuracy < 85)
.sort((a, b) => a.accuracy - b.accuracy)
.slice(0, 4);
.slice(0, 10);
return {
distribution: dist,