Below is the code for autoEffect. ``` autoEffect(() => { const testvar = formStore.rowLinks; console.log(testvar); }); ``` the component is wrapped in 'view'. I try changing state from a different file and function: ` formStore.rowLinks= containerPurchase;` But it just doesn't update when state changes.