From 781b5bb6941eb1df250193125b143ff65bacf781 Mon Sep 17 00:00:00 2001 From: Ryan Freeman Date: Wed, 6 Sep 2023 20:23:31 +0100 Subject: [PATCH] Update page.tsx --- app/projects/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/projects/page.tsx b/app/projects/page.tsx index 5cbeb03..b2a8888 100644 --- a/app/projects/page.tsx +++ b/app/projects/page.tsx @@ -10,6 +10,8 @@ export const metadata = { description: 'Here\'s a selection of academic and personal projects that I have worked on. Many of them are open-source, so if you see something that piques your interest, check out the code and contribute if you have ideas for how it can be improved.' } +const dynamic = 'force-dynamic' + export default async function Projects() { const pinnedRepos = (await getPinnedRepos()).sort((a, b) => b.stargazerCount - a.stargazerCount) @@ -54,4 +56,4 @@ export default async function Projects() { ) -} \ No newline at end of file +}