Feat: 에러 알림 추가
This commit is contained in:
parent
d8208b0b79
commit
17190b13c1
@ -62,7 +62,15 @@ export default function ProjectStructure({ project }: { project: Project }) {
|
|||||||
variant="outlinePrimary"
|
variant="outlinePrimary"
|
||||||
className="w-full"
|
className="w-full"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
requestAutoLabel.mutate({ projectId: project.id }, { onSuccess: refetch });
|
requestAutoLabel.mutate(
|
||||||
|
{ projectId: project.id },
|
||||||
|
{
|
||||||
|
onSuccess: refetch,
|
||||||
|
onError: () => {
|
||||||
|
alert('자동 레이블링을 요청하는 중 오류가 발생했습니다.');
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Play
|
<Play
|
||||||
|
Loading…
Reference in New Issue
Block a user