diff --git a/src/components/AdminSettings/SignalingServers.vue b/src/components/AdminSettings/SignalingServers.vue
index ad0c2f85629..10b4a587371 100644
--- a/src/components/AdminSettings/SignalingServers.vue
+++ b/src/components/AdminSettings/SignalingServers.vue
@@ -69,7 +69,6 @@
{{ t('spreed', 'Don\'t warn about connectivity issues in calls with more than 2 participants') }}
-
diff --git a/src/components/ConversationSettings/LobbySettings.vue b/src/components/ConversationSettings/LobbySettings.vue
index 83db4c9de2f..c87aff047f9 100644
--- a/src/components/ConversationSettings/LobbySettings.vue
+++ b/src/components/ConversationSettings/LobbySettings.vue
@@ -56,7 +56,7 @@
- {{ t('spreed', 'Import e-mail participants') }}
+ {{ t('spreed', 'Import email participants') }}
{
}, result)
})
- it('renders e-mail as status for e-mail guest', async () => {
+ it('renders email as status for email guest', async () => {
participant.actorType = ATTENDEE.ACTOR_TYPE.EMAILS
participant.participantType = PARTICIPANT.TYPE.GUEST
participant.invitedActorId = 'test@mail.com'
diff --git a/src/store/participantsStore.js b/src/store/participantsStore.js
index c046f84b846..92237c740a9 100644
--- a/src/store/participantsStore.js
+++ b/src/store/participantsStore.js
@@ -978,7 +978,7 @@ const actions = {
* @param {object} data - the wrapping object.
* @param {string} data.token - conversation token.
* @param {number} [data.attendeeId] - attendee id to target, or null for all.
- * @param {string} [data.actorId] - if attendee is provided, the actorId (e-mail) to show in the message.
+ * @param {string} [data.actorId] - if attendee is provided, the actorId (email) to show in the message.
*/
async resendInvitations(_, { token, attendeeId, actorId }) {
if (attendeeId) {