<!-- This file is generated by scripts/process-messages/index.js. Do not edit! -->
<!-- This file is generated by scripts/process-messages/index.js. Do not edit! -->
### await_outside_boundary
```
Cannot await outside a `<svelte:boundary>`.
```
The `await` keyword can only appear in a `$derived(...)` or template expression, or at the top level of a component's `<script>` block, if it is inside a [`<svelte:boundary>`](/docs/svelte/svelte-boundary):
```svelte
<svelte:boundary>
<p>{await getData()}</p>
</svelte:boundary>
```
This restriction may be lifted in a future version of Svelte.
The `await` keyword can only appear in a `$derived(...)` or template expression, or at the top level of a component's `<script>` block, if it is inside a [`<svelte:boundary>`](/docs/svelte/svelte-boundary):
```svelte
<svelte:boundary>
<p>{await getData()}</p>
</svelte:boundary>
```
This restriction may be lifted in a future version of Svelte.
## invalid_default_snippet
## invalid_default_snippet
> Cannot use `{@render children(...)}` if the parent component uses `let:` directives. Consider using a named snippet instead
> Cannot use `{@render children(...)}` if the parent component uses `let:` directives. Consider using a named snippet instead