diff --git a/src/app/shared/components/wednesday-frog/wednesday-frog.component.ts b/src/app/shared/components/wednesday-frog/wednesday-frog.component.ts index 5c206209..fb418f6b 100644 --- a/src/app/shared/components/wednesday-frog/wednesday-frog.component.ts +++ b/src/app/shared/components/wednesday-frog/wednesday-frog.component.ts @@ -27,8 +27,9 @@ export class WednesdayFrogComponent { showModal = false; constructor() { + const WEDNESDAY = 3; const today = new Date(); - this.showFrog = today.getDay() === 1; + this.showFrog = today.getDay() === WEDNESDAY; } openModal() {