added notification message

main
alex 2023-05-12 18:53:42 +02:00
parent 933f97719a
commit 0fe948d9aa
1 changed files with 3 additions and 0 deletions

View File

@ -132,6 +132,9 @@ export default function GroupTasksViewModal({ isOpen }) {
case Constants.GROUP_TASKS_STATUS.INPUT_REQUIRED:
return <Button size="small">Continue</Button>;
default:
notificationApi["error"]({
message: `Alert action ${status} not implemented`,
});
return <></>;
}
};