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
commit 3300c6c598
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,6 +15,8 @@ export function getNotificationString(
return "Auto-recharge successful"; return "Auto-recharge successful";
case NotificationType.AUTO_RECHARGE_FAILED: case NotificationType.AUTO_RECHARGE_FAILED:
return "Auto-recharge failed"; return "Auto-recharge failed";
case NotificationType.CONCURRENCY_LIMIT_REACHED:
return "Concurrency limit reached";
default: default:
return "Unknown notification type"; return "Unknown notification type";
} }