Describe the bug
$effect not executes.
Reproduction
<script>
let form = $state({
name: "",
});
$effect(() => {
setTimeout(() => console.log($state.snapshot(form)))
});
</script>
<input type="text" bind:value={form.name} />
Logs
System Info
It's executed on Svelte Playground.
Severity
annoyance