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
Currently you can only really run the app in one tab at once - if you open it in multiple ones, changes you make in one will override ones made in another. Ideally we'd sync data between all tabs, so changes made in one show up in others.
When we receive an event, reload the store - we'll have to do some level of diffing here (probably just on the servant/item level) as otherwise this'll re-render the whole page.
Somehow get Formik to reload forms which haven't been touched at all. Unfortunately it appears changes to the initialValues prop aren't applied unless we specify enableReinitialize, but it's not clear if that's the behaviour we want either - to investigate!
The text was updated successfully, but these errors were encountered:
Currently you can only really run the app in one tab at once - if you open it in multiple ones, changes you make in one will override ones made in another. Ideally we'd sync data between all tabs, so changes made in one show up in others.
Basically:
StorageEvent
s.initialValues
prop aren't applied unless we specifyenableReinitialize
, but it's not clear if that's the behaviour we want either - to investigate!The text was updated successfully, but these errors were encountered: