@ -8,12 +8,6 @@ Encountered asynchronous work while rendering synchronously.
You (or the framework you're using) called [`render(...)`](svelte-server#render) with a component containing an `await` expression. Either `await` the result of `render` or wrap the `await` (or the component containing it) in a [`<svelte:boundary>`](svelte-boundary) with a `pending` snippet.
You (or the framework you're using) called [`render(...)`](svelte-server#render) with a component containing an `await` expression. Either `await` the result of `render` or wrap the `await` (or the component containing it) in a [`<svelte:boundary>`](svelte-boundary) with a `pending` snippet.
## fn_unavailable_on_server
> `%name%`(...) is unavailable on the server.
## html_deprecated
> The `html` property of server render results has been deprecated. Use `body` instead.
/** Make the result of a function hydratable. This means it will be serialized on the server and available synchronously during hydration on the client. */