From c7025403e5598517ae14217123bc4db9ef2c5238 Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sun, 22 Oct 2023 10:07:55 +0200 Subject: [PATCH] chore: Remove fallback from platforms page. See #5230 --- sites/org/pages/account/[platform].mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/org/pages/account/[platform].mjs b/sites/org/pages/account/[platform].mjs index 7322375432c..c81e73e8f25 100644 --- a/sites/org/pages/account/[platform].mjs +++ b/sites/org/pages/account/[platform].mjs @@ -80,5 +80,5 @@ export const getStaticPaths = async () => { } } - return { paths, fallback: 'blocking' } + return { paths } }