fix(vpaas) fix invite url flicker for jaas users

This commit is contained in:
Tudor-Ovidiu Avram 2020-10-29 14:20:46 +02:00
parent b9ccc3ad8c
commit 8f1cb7ded2
1 changed files with 2 additions and 1 deletions

View File

@ -216,9 +216,10 @@ class CopyMeetingUrl extends Component<Props, State> {
*/
function mapStateToProps(state) {
const { enableAutomaticUrlCopy } = state['features/base/config'];
const { customizationReady } = state['features/dynamic-branding'];
return {
url: getCurrentConferenceUrl(state),
url: customizationReady ? getCurrentConferenceUrl(state) : '',
_enableAutomaticUrlCopy: enableAutomaticUrlCopy || false
};
}