diff --git a/src/renderer/store/TimelineSpace/Modals/NewToot.js b/src/renderer/store/TimelineSpace/Modals/NewToot.js index e4a5e8d8..2053ef7e 100644 --- a/src/renderer/store/TimelineSpace/Modals/NewToot.js +++ b/src/renderer/store/TimelineSpace/Modals/NewToot.js @@ -70,7 +70,7 @@ const NewToot = { const mentionAccounts = [message.account.acct].concat(message.mentions.map(a => a.acct)) .filter((a, i, self) => self.indexOf(a) === i) .filter((a) => a !== rootState.TimelineSpace.account.username) - commit('updateStatus', `${mentionAccounts.map(m => `@${m}`).join(' ')}`) + commit('updateStatus', `${mentionAccounts.map(m => `@${m}`).join(' ')} `) commit('changeModal', true) }, changeModal ({ commit }, value) {