diff --git a/frontend/src/pages/Landing/Landing.tsx b/frontend/src/pages/Landing/Landing.tsx index 9fbcf117..d8201c9e 100644 --- a/frontend/src/pages/Landing/Landing.tsx +++ b/frontend/src/pages/Landing/Landing.tsx @@ -18,7 +18,7 @@ let endTime: Date | undefined; const Landing = () => { const { toast } = useToast(); const [dogTouchCount, setDogTouchCount] = useState(1); - const isDogAwake = dogTouchCount >= TARGET_NUMBER; + const isDogAwake = dogTouchCount > TARGET_NUMBER; const onTouchDog = () => { if (dogTouchCount === 1) {