Skip to content

Commit

Permalink
release v2.5.1 - bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed Jan 9, 2024
1 parent a57db51 commit 26a49cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Expand Up @@ -47,8 +47,7 @@ const Example = () => {
);

//demo state
const [groupedColumnMode, setGroupedColumnMode] =
(useState < false) | 'remove' | ('reorder' > 'remove'); //default is 'reorder
const [groupedColumnMode, setGroupedColumnMode] = useState('reorder'); //default is 'reorder

const table = useMaterialReactTable({
columns,
Expand Down
Expand Up @@ -50,7 +50,7 @@ const Example = () => {
//demo state
const [groupedColumnMode, setGroupedColumnMode] = useState<
false | 'remove' | 'reorder'
>('remove'); //default is 'reorder
>('reorder'); //default is 'reorder

const table = useMaterialReactTable({
columns,
Expand Down
2 changes: 1 addition & 1 deletion packages/material-react-table/package.json
@@ -1,5 +1,5 @@
{
"version": "2.5.0",
"version": "2.5.1",
"license": "MIT",
"name": "material-react-table",
"description": "A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.",
Expand Down

1 comment on commit 26a49cd

@vercel
Copy link

@vercel vercel bot commented on 26a49cd Jan 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.