Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
SeungJL committed Sep 21, 2024
1 parent 77038a7 commit d3d0a17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/study/getStudyConfimCondition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const getStudyConfimCondition = (
studyDateStatus: StudyDateStatus,
studyStatus: StudyStatus,
) => {
if (studyDateStatus === "today" && studyStatus === "pending" && getHour() === 16) {
if (studyDateStatus === "today" && studyStatus === "pending" && getHour() === 23) {
return true;
}
return false;
Expand Down

0 comments on commit d3d0a17

Please sign in to comment.