mirror of
https://github.com/misode/misode.github.io.git
synced 2026-05-01 01:59:33 +00:00
Update contributors
This commit is contained in:
@@ -136,11 +136,11 @@ function Changelog() {
|
||||
|
||||
function Contributors() {
|
||||
const supporters = useMemo(() => {
|
||||
return contributors.filter(c => c.types.includes('support'))
|
||||
return contributors.filter(c => c.types.includes('support') || c.types.includes('infrastructure'))
|
||||
}, [])
|
||||
|
||||
const otherContributors = useMemo(() => {
|
||||
return shuffle(contributors.filter(c => c.types.filter(t => t !== 'support').length > 0))
|
||||
return shuffle(contributors.filter(c => !supporters.includes(c)))
|
||||
}, [])
|
||||
|
||||
return <div class="contributors">
|
||||
|
||||
Reference in New Issue
Block a user