[home][profile] limit selectMainPronouns to first three

This commit is contained in:
Andrea Vos 2021-12-16 21:09:17 +01:00
parent b020e64832
commit c87ec1cd20

View File

@ -212,7 +212,7 @@
}
for (let opinion of [1, 0, 3, 2]) {
if (best[opinion].length) {
return best[opinion];
return best[opinion].slice(0, 3);
}
}
return [];