Skip to content

Commit

Permalink
change fallback to blocking
Browse files Browse the repository at this point in the history
  • Loading branch information
Fbasham committed Sep 7, 2023
1 parent 7fdf77c commit 0d1ee44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pages/projects/benefits-navigator/[id].js
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export async function getStaticPaths() {
paths.map((path) => (path.params.id = path.params.id.split("/").at(-1)));
return {
paths,
fallback: false,
fallback: "blocking",
};
}

Expand Down
2 changes: 1 addition & 1 deletion pages/projects/oas-benefits-estimator/[id].js
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ export async function getStaticPaths() {
paths.map((path) => (path.params.id = path.params.id.split("/").at(-1)));
return {
paths,
fallback: false,
fallback: "blocking",
};
}

Expand Down

0 comments on commit 0d1ee44

Please sign in to comment.