fix(sip) remove sip text from invite

this will be added in a subsequent commit to the dial in page
This commit is contained in:
Tudor-Ovidiu Avram 2021-05-21 13:04:26 +03:00
parent d7a6a48acd
commit 2f9fb64332
1 changed files with 0 additions and 8 deletions

View File

@ -301,14 +301,6 @@ export function getInviteText({
invite = `${invite}\n${dial}\n${moreNumbers}`;
}
if (dialIn.sipUri) {
const sipText = t('info.inviteSipEndpoint', {
sipUri: dialIn.sipUri
});
invite = `${invite}\n${sipText}`;
}
return invite;
}