Skip to content
  • Sponsor sveltejs/svelte

  • Notifications You must be signed in to change notification settings
  • Fork 4.5k
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Derived isn't mutated when reassigned synchronously after definition #15590

Open
thes01 opened this issue Mar 22, 2025 · 0 comments · May be fixed by #15592
Open

Derived isn't mutated when reassigned synchronously after definition #15590

thes01 opened this issue Mar 22, 2025 · 0 comments · May be fixed by #15592

Comments

@thes01
Copy link

thes01 commented Mar 22, 2025

Describe the bug

I just wanted to give the new mutable deriveds a try and did a simple test:

let thing = $derived(state); // or just $derived('old')
thing = 'new';

However, in the output, I still see the old value, not the updated one.

Note: this works

let thing = $derived('old');
Promise.resolve().then(() => { thing = 'new' });

UPDATE: If you put a console.log before the reassignment, then it starts working.

Reproduction

https://svelte.dev/playground/f447b4a9ec5d4271a9d1b187ab91a560?version=5.25.2

Logs

System Info

not relevant

Severity

annoyance

@paoloricciuti paoloricciuti linked a pull request Mar 22, 2025 that will close this issue
6 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant