authscape 1.0.544 → 1.0.546

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/index.js CHANGED
@@ -1506,7 +1506,7 @@ var EditableDatagrid = function EditableDatagrid(_ref) {
1506
1506
  _useState4 = _slicedToArray(_useState3, 2),
1507
1507
  totalRows = _useState4[0],
1508
1508
  setTotalRows = _useState4[1];
1509
- var _useState5 = (0, _react.useState)(1),
1509
+ var _useState5 = (0, _react.useState)(0),
1510
1510
  _useState6 = _slicedToArray(_useState5, 2),
1511
1511
  offset = _useState6[0],
1512
1512
  setOffset = _useState6[1];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authscape",
3
- "version": "1.0.544",
3
+ "version": "1.0.546",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -6,7 +6,7 @@ export const EditableDatagrid = ({url = null, eRows = null, columns, isCellEdita
6
6
 
7
7
  const [rows, setRows] = useState([]);
8
8
  const [totalRows, setTotalRows] = useState(0);
9
- const [offset, setOffset] = useState(1);
9
+ const [offset, setOffset] = useState(0);
10
10
 
11
11
  useEffect(() => {
12
12