From a52a2e1265f7637922a7ea6946efa75b6e057504 Mon Sep 17 00:00:00 2001 From: Josh Stevens Date: Fri, 21 Feb 2020 07:58:41 -0600 Subject: [PATCH] Fix code sandbox for kitchen sink (#1915) There's an error on this page that says `useGroupBy` must come after `useFilters` --- examples/kitchen-sink-controlled/src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/kitchen-sink-controlled/src/App.js b/examples/kitchen-sink-controlled/src/App.js index 351f44a..86eb798 100644 --- a/examples/kitchen-sink-controlled/src/App.js +++ b/examples/kitchen-sink-controlled/src/App.js @@ -301,8 +301,8 @@ function Table({ columns, data, updateMyData, skipPageReset }) { // when we edit the data, undefined means using the default autoResetPage: !skipPageReset, }, - useGroupBy, useFilters, + useGroupBy, useSortBy, useExpanded, usePagination,