diff --git a/src/components/CallView/shared/LocalVideo.vue b/src/components/CallView/shared/LocalVideo.vue index b91bbde97db..2c1247050fb 100644 --- a/src/components/CallView/shared/LocalVideo.vue +++ b/src/components/CallView/shared/LocalVideo.vue @@ -59,7 +59,6 @@ import VideoBackground from './VideoBackground.vue' import AvatarWrapper from '../../AvatarWrapper/AvatarWrapper.vue' import { AVATAR } from '../../../constants.js' -import { useGuestNameStore } from '../../../stores/guestName.js' import attachMediaStream from '../../../utils/attachmediastream.js' import { ConnectionState } from '../../../utils/webrtc/models/CallParticipantModel.js' @@ -122,11 +121,6 @@ export default { emits: ['click-video'], - setup() { - const guestNameStore = useGuestNameStore() - return { guestNameStore } - }, - data() { return { notificationHandle: null, @@ -183,17 +177,6 @@ export default { return this.$store.getters.getDisplayName() }, - sessionHash() { - return Hex.stringify(SHA1(this.localCallParticipantModel.attributes.peerId)) - }, - - guestName() { - return this.guestNameStore.getGuestName( - this.$store.getters.getToken(), - this.sessionHash, - ) - }, - videoWrapperClass() { return { 'icon-loading': this.isNotConnected,