Skip to content

Commit

Permalink
RSC: Chore: Need to await getEntries in console.log (redwoodjs#10541)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobbe committed May 4, 2024
1 parent 25665d5 commit 76dc5a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vite/src/clientSsr.ts
Expand Up @@ -115,7 +115,7 @@ export function renderFromDist<TProps extends Record<string, any>>(
ServerEntry = () => createElement('div', {}, 'Loading')
}

console.log('clientSsr.ts getEntries()', getEntries())
console.log('clientSsr.ts getEntries()', await getEntries())
const clientEntries = (await getEntries()).clientEntries

// TODO (RSC): Try removing the proxy here and see if it's really necessary.
Expand Down

0 comments on commit 76dc5a5

Please sign in to comment.