🐛 Fix hiring banner check

This commit is contained in:
Iván Ovejero 2022-03-30 13:25:34 +02:00
parent b7ba200db0
commit da718da480

View file

@ -80,7 +80,7 @@ export default mixins(
}
},
logHiringBanner() {
if (!this.isHiringBannerEnabled && this.$route.name !== VIEWS.DEMO) {
if (this.isHiringBannerEnabled && this.$route.name !== VIEWS.DEMO) {
console.log(HIRING_BANNER); // eslint-disable-line no-console
}
},