remove real data from sign in
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user