Skip to content

Commit

Permalink
Feat: 점검
Browse files Browse the repository at this point in the history
  • Loading branch information
yoyobar committed Aug 2, 2024
1 parent dbf07c0 commit 295e366
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/PageMaintenance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ const PageMaintenance = ({ children }: { children: ReactNode }) => {
const minutes = now.getMinutes();

if (hours === 0 && minutes >= 0 && minutes < 5) {
setIsMaintenanceTime(false);
setIsMaintenanceTime(true);
} else {
setIsMaintenanceTime(false);
setIsMaintenanceTime(true);
}
};

Expand Down

0 comments on commit 295e366

Please sign in to comment.