Skip to content

Commit f98b0f8

Browse files
committed
readd shuffle
1 parent 1ea415d commit f98b0f8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/Contributors.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { shuffle } from "lodash"
12
import { Box, Flex, Image, LinkBox, LinkOverlay } from "@chakra-ui/react"
23

34
import InlineLink from "@/components/Link"
@@ -14,7 +15,7 @@ export interface Contributor {
1415
}
1516

1617
const Contributors = () => {
17-
const contributorsList = JSON.parse(data).contributors
18+
const contributorsList = shuffle(JSON.parse(data).contributors)
1819

1920
return (
2021
<>

0 commit comments

Comments
 (0)