From c1a328e5caf10aa9d3d71284cfe2df82afdebbd4 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Tue, 17 Mar 2026 11:51:16 -0600 Subject: [PATCH] remove redundant success message --- .../portal/routes/services/components/health-check.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/projects/ui/src/app/routes/portal/routes/services/components/health-check.component.ts b/web/projects/ui/src/app/routes/portal/routes/services/components/health-check.component.ts index a246a3c54..a9fb82f7a 100644 --- a/web/projects/ui/src/app/routes/portal/routes/services/components/health-check.component.ts +++ b/web/projects/ui/src/app/routes/portal/routes/services/components/health-check.component.ts @@ -101,7 +101,7 @@ export class ServiceHealthCheckComponent { case 'starting': return this.i18n.transform('Starting')! case 'success': - return `${this.i18n.transform('Success')}: ${message || 'health check passing'}` + return message || this.i18n.transform('Success')! case 'waiting': return message ? `${this.i18n.transform('Waiting on')} ${message}...`