diff --git a/website/client/.eslintrc.js b/website/client/.eslintrc.js index b28edcbc75..7dc69cc284 100644 --- a/website/client/.eslintrc.js +++ b/website/client/.eslintrc.js @@ -14,8 +14,6 @@ module.exports = { // TODO find a way to let eslint understand webpack aliases 'import/no-unresolved': 'off', 'import/extensions': 'off', - 'vue/component-tags-order': 'off', - 'vue/no-mutating-props': 'off', 'vue/no-v-html': 'off', 'vue/html-self-closing': ['error', { html: { diff --git a/website/client/src/components/header/banners/chatBanner.vue b/website/client/src/components/header/banners/chatBanner.vue index 5a4dcac942..24f9477b7f 100644 --- a/website/client/src/components/header/banners/chatBanner.vue +++ b/website/client/src/components/header/banners/chatBanner.vue @@ -56,10 +56,7 @@ export default { return (this.$route.fullPath.indexOf('/faq')) !== -1; }, showChatWarning () { - if (this.$route.fullPath.indexOf('/groups') !== -1) return true; - if (this.$route.fullPath.indexOf('/tavern-and-guilds') !== -1) return false; - if (this.$route.fullPath.indexOf('/tavern') !== -1) return true; - return this.faqPage; + return false; }, }, };