Merge pull request #1404 from mendableai/fix/add-notification-type

feat(notification): add notification message for concurrency limit reached
This commit is contained in:
Ademílson Tonato
2025-04-02 17:39:59 +01:00
committed by GitHub
@@ -15,6 +15,8 @@ export function getNotificationString(
return "Auto-recharge successful";
case NotificationType.AUTO_RECHARGE_FAILED:
return "Auto-recharge failed";
case NotificationType.CONCURRENCY_LIMIT_REACHED:
return "Concurrency limit reached";
default:
return "Unknown notification type";
}