fixed syntax error in default layout

This commit is contained in:
Markus 2023-07-12 10:15:25 +02:00
parent 4ba65852a6
commit c51f7afd9a

View File

@ -39,9 +39,9 @@ export default {
mixins: [seo, mobile()],
methods: {
closeSingleRoom() {
this.$store.commit('chat/SET_OPEN_CHAT', { showChat: false, roomID: 'u0' })
this.$store.commit('chat/SET_OPEN_CHAT', { showChat: false, roomID: null })
},
}
},
beforeCreate() {
this.$store.commit('chat/SET_OPEN_CHAT', { showChat: false, roomID: null })
},