diff --git a/src/client/hocs/withStore.js b/src/client/hocs/withStore.js index 17f312d..03f08c0 100644 --- a/src/client/hocs/withStore.js +++ b/src/client/hocs/withStore.js @@ -47,10 +47,11 @@ export const withStoreValue = Component => ({ export const withTableData = Table => props => { const { name: tableName } = props; + const ObservedTable = observer(Table); const TableWithStore = () => { const { calculationStore } = useStores(); const tableData = calculationStore.tables[tableName]; - return