Skip to content

Commit

Permalink
Fix spelling mistake in prerender error message (redwoodjs#8018)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobbe authored and jaiakt committed Apr 5, 2023
1 parent cf78c93 commit a293c27
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 a293c27

Please sign in to comment.