We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 606ce73 commit b31a457Copy full SHA for b31a457
app/entry.server.tsx
@@ -44,7 +44,7 @@ export default async function handleRequest(...args: DocRequestArgs) {
44
? 'onAllReady'
45
: 'onShellReady'
46
47
- const nonce = String(loadContext.cspNonce) ?? undefined
+ const nonce = loadContext.cspNonce?.toString() ?? ''
48
return new Promise(async (resolve, reject) => {
49
let didError = false
50
// NOTE: this timing will only include things that are rendered in the shell
0 commit comments