Skip to content

Commit

Permalink
Fix spelling mistake in prerender error message (#8018)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobbe authored Apr 5, 2023
1 parent af7a998 commit 2e9ae55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/prerender/src/runPrerender.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ function insertChunkLoadingScript(
const chunkPath = buildManifest[`${route?.pageIdentifier}.js`]

if (!chunkPath) {
throw new Error('Could not found chunk for ' + route?.pageIdentifier)
throw new Error('Could not find chunk for ' + route?.pageIdentifier)
}

indexHtmlTree('head').prepend(
Expand Down

0 comments on commit 2e9ae55

Please sign in to comment.