We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82641f6 commit 60a3148Copy full SHA for 60a3148
1 file changed
βsrc/services/WaffleService.tsβ
@@ -36,7 +36,8 @@ export const implementWaffleService = ({
36
37
return a;
38
}, [])
39
- .toSorted((a, b) => b.given + b.taken - (a.given + a.taken));
+ .toSorted((a, b) => b.given + b.taken - (a.given + a.taken))
40
+ .slice(0, 20);
41
42
const channel = channelId.startsWith('C') ? channelId : userId;
43
0 commit comments