fix missing nested property when storing in local storage (#113538)

This commit is contained in:
Sandra G 2021-09-30 11:36:58 -04:00 committed by GitHub
parent 4f95060286
commit 6eebf2433d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -112,7 +112,7 @@ export function useTable(storageKey: string) {
setSorting(cleanSortingData({ sort }));
setLocalStorageData(storage, {
page,
sort,
sort: { sort },
});
};