remove real data from sign in

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-07-13 16:28:34 +02:00
parent 4aaebbb284
commit 1a08a83cca
3 changed files with 114 additions and 17 deletions

View File

@@ -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) {