Skip to content

Commit

Permalink
Merge branch 'demo' of https://github.com/aelassas/movinin into demo
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Feb 2, 2025
2 parents 9459a07 + c59b5c3 commit 315cee7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/src/components/scheduler/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# React Scheduler Component

This component was forked from the following [project]()https://github.com/aldabil21/react-scheduler and was updated to fix bugs and meet specific needs.
This component was forked from the following [project](https://github.com/aldabil21/react-scheduler) and was updated to fix bugs and meet specific needs.

> :warning: **Notice**: This component uses `mui`/`emotion`/`date-fns`. if your project is not already using these libs, this component may not be suitable.
Expand Down
2 changes: 1 addition & 1 deletion mobile/screens/HomeScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const HomeScreen = ({ navigation, route }: NativeStackScreenProps<StackParams, '
if (date) {
date.setHours(12, 0, 0, 0)

if (to && ((to.getTime() <= date.getTime()) || (date.getTime() > to.getTime()))) {
if (to && date.getTime() >= to.getTime()) {
setTo(undefined)
}

Expand Down

0 comments on commit 315cee7

Please sign in to comment.