fix(vpaas) fix invite url flicker for jaas users
This commit is contained in:
parent
b9ccc3ad8c
commit
8f1cb7ded2
|
@ -216,9 +216,10 @@ class CopyMeetingUrl extends Component<Props, State> {
|
||||||
*/
|
*/
|
||||||
function mapStateToProps(state) {
|
function mapStateToProps(state) {
|
||||||
const { enableAutomaticUrlCopy } = state['features/base/config'];
|
const { enableAutomaticUrlCopy } = state['features/base/config'];
|
||||||
|
const { customizationReady } = state['features/dynamic-branding'];
|
||||||
|
|
||||||
return {
|
return {
|
||||||
url: getCurrentConferenceUrl(state),
|
url: customizationReady ? getCurrentConferenceUrl(state) : '',
|
||||||
_enableAutomaticUrlCopy: enableAutomaticUrlCopy || false
|
_enableAutomaticUrlCopy: enableAutomaticUrlCopy || false
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue