diff --git a/resources/views/friday/Friday.vue b/resources/views/friday/Friday.vue index dd56101..33617c0 100644 --- a/resources/views/friday/Friday.vue +++ b/resources/views/friday/Friday.vue @@ -55,13 +55,12 @@ export default { methods: { getCurrentDay(){ let date = new Date(); - console.log(date); return date.getDay(); }, checkFriday(){ this.isFirst = false; let day = this.getCurrentDay(); - this.notFriday = day !== 4; + this.notFriday = day !== 5; this.day = this.dayList[day]; if (this.notFriday){ let prevPhrase = this.phrase;