### Describe the bug When using fromStore() ```html <script lang=ts> import {writable, fromStore} from "svelte/store"; const x = writable({name: 'test'}); const y = fromStore(x); </script> ``` updating deep value of y.current.name - is not triggering update of x.name. See below for playground link. ---- Additional info: Using primitive value for store, ex. ```ts conxt x = writable('TEXT') const y = fromStore(x); y.current = 'blabla'; ``` works fine. ### Reproduction https://svelte.dev/playground/9c230404f43548bd9098c598ff205285?version=5.33.8 ### Logs ```shell ``` ### System Info ```shell Svelte 5.33.X ``` ### Severity blocking an upgrade