Skip to content

Commit

Permalink
sanity check
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecAivazis committed Feb 10, 2024
1 parent 3504f1a commit f8e90bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/houdini-react/src/plugin/codegen/render.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import { serverAdapterFactory, _serverHandler } from '$houdini/runtime/router/se
import { HoudiniClient } from '$houdini/runtime/client'
import { renderToStream } from 'houdini-react/server'
import React from 'react'
import ReactDom from 'react-dom/server.browser'
import ReactDom from 'react-dom/server'
import { router_cache } from '../../runtime/routing'
// @ts-expect-error
Expand Down Expand Up @@ -70,7 +70,7 @@ export const on_render =
if (!match) {
return new Response('not found', { status: 404 })
}
return new Response('sanity', { status: 404 })
const stream = await ReactDom.renderToReadableStream(React.createElement('html', {}))
Expand Down

0 comments on commit f8e90bd

Please sign in to comment.