You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the following example, the value t is never set, it remains undefined.
importi18nextfrom'i18next';exportconstlanguage=writable(i18next.language||'');language.subscribe(value=>i18next.changeLanguage(value));// Update the function because internally the language has been updatedexportconstt=derive([language],()=>i18next.t.bind(i18next));
The derived function is run, but the value is never set.