Fix Open Chat button

This commit is contained in:
Tusooa Zhu 2022-05-25 13:34:26 -04:00
parent c93adf2e9a
commit 152302cbff
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224

View file

@ -40,7 +40,7 @@ const AccountActions = {
openChat () {
this.$router.push({
name: 'chat',
params: { recipient_id: this.user.id }
params: { username: this.$store.state.users.currentUser.screen_name, recipient_id: this.user.id }
})
}
},