Skip to content

Commit

Permalink
fix: state_proxy_equality_mismatch error in deferred-transitions exam…
Browse files Browse the repository at this point in the history
…ple (sveltejs#890)

fix state_proxy_equality_mismatch error
  • Loading branch information
Thiagolino8 authored Dec 13, 2024
1 parent 99b16ef commit 9d38b38
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
fallback: scale
});
let selected = $state(null);
let loading = $state(null);
let selected = $state.raw(null);
let loading = $state.raw(null);
const ASSETS = `https://sveltejs.github.io/assets/crossfade`;
Expand Down

0 comments on commit 9d38b38

Please sign in to comment.