Skip to content

Commit

Permalink
Fix a bug with the disabled story (#914)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincrossgrove committed Feb 19, 2023
1 parent 00f749b commit 5c58f0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stories/2 - Presets/Sortable/1-Vertical.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export const VariableHeights = () => {
};

export const DisabledItems = () => {
const disabledItems: UniqueIdentifier[] = ['1', '5', '8', '13', '20'];
const disabledItems: UniqueIdentifier[] = [1, 5, 8, 13, 20];
return (
<Sortable
{...props}
Expand Down

0 comments on commit 5c58f0f

Please sign in to comment.