Skip to content

Commit

Permalink
add more recent channels
Browse files Browse the repository at this point in the history
  • Loading branch information
dispherical committed Sep 22, 2024
1 parent 9133a23 commit 644cd50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sections/30-recent.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = {
}, {});
const sortedChannels = Object.keys(channelMap)
.sort((a, b) => channelMap[b] - channelMap[a])
.slice(0, 10);
.slice(0, 20);
let text = await Promise.all(
sortedChannels.map(async (channel) => {
const channelRecord = await prisma.channel.findFirst({
Expand Down

0 comments on commit 644cd50

Please sign in to comment.