diff --git a/apps/dashboard/src/utils/getters.ts b/apps/dashboard/src/utils/getters.ts
index f5d8f6cd..bbdf3566 100644
--- a/apps/dashboard/src/utils/getters.ts
+++ b/apps/dashboard/src/utils/getters.ts
@@ -4,7 +4,9 @@ export function getProfileName(
profile: IServiceProfile | undefined | null,
short = true
) {
- if (!profile) return 'Unknown';
+ if (!profile) {
+ return '';
+ }
if (!profile.isExternal) {
if (short) {