Merge branch 'fe/develop' of https://lab.ssafy.com/s11-s-project/S11P21S002 into fe/refactor/admin-page

This commit is contained in:
정현조 2024-09-23 14:27:21 +09:00
commit ad2de41efa
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;