@dreamtree-org/twreact-ui 1.0.85 → 1.0.87
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 +1 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -4223,11 +4223,10 @@ var Table = function Table(_ref2) {
|
|
|
4223
4223
|
|
|
4224
4224
|
// Single effect for data sync (consolidated from 3 effects)
|
|
4225
4225
|
useEffect(function () {
|
|
4226
|
-
if (serverSide || onFetch) return;
|
|
4227
4226
|
if (Array.isArray(data)) {
|
|
4228
4227
|
setTableData(data);
|
|
4229
4228
|
}
|
|
4230
|
-
}, [data
|
|
4229
|
+
}, [data]);
|
|
4231
4230
|
|
|
4232
4231
|
// Mobile view detection
|
|
4233
4232
|
useEffect(function () {
|