Fix broke storybook

This commit is contained in:
Vitaly Rtishchev
2025-10-09 22:43:51 +03:00
parent ec459e32a1
commit dba951aee5

View File

@ -7,7 +7,8 @@ export const parameters = {
layout: 'fullscreen',
options: {
showPanel: false,
storySort: (a: any, b: any) => a.title.localeCompare(b.title, undefined, { numeric: true }),
// @ts-expect-error storybook throws build error for (a: any, b: any)
storySort: (a, b) => a.title.localeCompare(b.title, undefined, { numeric: true }),
},
backgrounds: { disable: true },
};