move items which have less than 250 words to quick links section

This commit is contained in:
Hongbo Wu
2024-07-10 10:54:36 +08:00
parent 8ac27171c7
commit 1aaa4202fc

View File

@ -428,8 +428,7 @@ const mixHomeItems = (
const topCandidates = rankedHomeItems.slice(0, 50)
// find the median word count
const wordCountThreshold = 500
const wordCountThreshold = 250
// separate items into two groups based on word count
const shortItems: Array<Candidate> = []
const longItems: Array<Candidate> = []