From 837c834fbe913661d54e841efcadfc950c96e52b Mon Sep 17 00:00:00 2001 From: yedidya rashi Date: Wed, 29 Jun 2022 20:59:26 +0300 Subject: [PATCH] fix: randomShuffle isn't working correctly (#167) --- pages/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/index.tsx b/pages/index.tsx index 94e8949..b53a2b8 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -30,5 +30,6 @@ export const getStaticProps: GetStaticProps = async () => { props: { people: randomShuffle(getPeople()), }, + revalidate: true, }; };