Skip to content

Commit

Permalink
fix/#521: 깨우기 성공 후 눈 뜨도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
HyeryongChoi committed Oct 19, 2023
1 parent 5308f91 commit 354c33c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/Landing/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ let endTime: Date | undefined;
const Landing = () => {
const { toast } = useToast();
const [dogTouchCount, setDogTouchCount] = useState<number>(1);
const isDogAwake = dogTouchCount >= TARGET_NUMBER;
const isDogAwake = dogTouchCount > TARGET_NUMBER;

const onTouchDog = () => {
if (dogTouchCount === 1) {
Expand Down

0 comments on commit 354c33c

Please sign in to comment.