Fix: 빌드 에러 해결

This commit is contained in:
jhynsoo 2024-09-23 14:24:06 +09:00
parent 89c2f3f9c7
commit c9129e8a67
2 changed files with 2 additions and 2 deletions

View File

@ -6,4 +6,4 @@ export default {
component: CanvasControlBar,
};
export const Default = () => <CanvasControlBar />;
export const Default = () => <CanvasControlBar saveJson={() => {}} />;

View File

@ -259,7 +259,7 @@ export interface Shape {
export interface LabelJson {
version: string;
task_type: 'det' | 'seg';
task_type: 'cls' | 'det' | 'seg';
shapes: Shape[];
split: string;
imageHeight: number;