fix(storybook): fix typecheck errors in SortableList.stories.tsx

Co-authored-by: Razboy20 <29903962+Razboy20@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-12 04:28:22 +00:00
parent 3e1eb4ee6b
commit 02350188b5

View File

@@ -4,7 +4,7 @@ import Instructor from '@shared/types/Instructor';
import { tailwindColorways } from '@shared/util/storybook';
import type { Meta, StoryObj } from '@storybook/react';
import PopupCourseBlock from '@views/components/common/PopupCourseBlock';
import type { BaseItem } from '@views/components/common/SortableList';
import type { BaseItem, SortableListProps } from '@views/components/common/SortableList';
import { SortableList } from '@views/components/common/SortableList';
import React from 'react';
@@ -94,11 +94,13 @@ export const Default: Story = {
course,
})),
onChange: () => {},
renderItem: ({ id, course }) => <PopupCourseBlock key={id} course={course} colors={course.colors} />,
renderItem: (item: CourseWithId) => (
<PopupCourseBlock key={item.id} course={item.course} colors={item.course.colors} />
),
},
render: args => (
<div className='h-3xl w-3xl transform-none'>
<SortableList {...args} />
<SortableList {...(args as SortableListProps<CourseWithId>)} />
</div>
),
};