feat(notification): add notification message for concurrency limit reached

This commit is contained in:
Ademílson F. Tonato 2025-04-02 17:36:11 +01:00
parent 7216799ca0
commit b900f34b5a
No known key found for this signature in database
GPG Key ID: 169C7BE271C9FA3A

View File

@ -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";
}