@carbonorm/carbonreact 3.5.3 → 3.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -4136,8 +4136,9 @@ function initiateWebsocket({ TABLES = undefined, WsLiveUpdates = undefined, url
4136
4136
  ...REQUEST
4137
4137
  };
4138
4138
  });
4139
- console.log('updatedElements', updatedElements);
4140
- WsLiveUpdates[TABLE_NAME_SHORT][METHOD]({}, updatedElements);
4139
+ updatedElements.forEach((row) => {
4140
+ WsLiveUpdates[TABLE_NAME_SHORT][METHOD]({}, row);
4141
+ });
4141
4142
  }
4142
4143
  });
4143
4144
  };