Remove the boolean conversion of authLogin string to display the string value instead of 'true'. (#3995)

This commit is contained in:
Damien Fetis 2019-03-19 16:55:14 +01:00 committed by virtuacoplenny
parent a6719896a2
commit e652117571
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ export function getProfileTabProps(stateful: Object | Function) {
return {
authEnabled: Boolean(conference && authEnabled),
authLogin: Boolean(conference && authLogin),
authLogin: authLogin,
displayName: localParticipant.name,
email: localParticipant.email
};