-
-
Notifications
You must be signed in to change notification settings - Fork 59
Closed
Labels
Description
Motivation
SvelteMap, SvelteSet, and SvelteURL don't need to be wrapped in $state. but that's not always obvious
Description
per above
Examples
<!-- ✓ GOOD -->
<script>
const myset = new SvelteSet
</script>
<!-- ✗ BAD -->
<script>
const myset = $state(new SvelteSet)
</script>Additional comments
No response