Remove the boolean conversion of authLogin string to display the string value instead of 'true'. (#3995)
This commit is contained in:
parent
a6719896a2
commit
e652117571
|
@ -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
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue