Skip to content

Commit

Permalink
[hotfix] 상점 isStoreOpen 로직 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
daepan committed Mar 4, 2024
1 parent 254757c commit e7dfa4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Store/StorePage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ const isStoreOpen = (open_time: string | null, close_time: string | null) => {
nowTimeNum >= openTimeNum || nowTimeNum < closeTimeNum
) : (
nowTimeNum >= openTimeNum && nowTimeNum < closeTimeNum
)) return true;
)) return false;

return false;
return true;
};

function StorePage() {
Expand Down

0 comments on commit e7dfa4f

Please sign in to comment.