Skip to content

Commit

Permalink
refactor: ♻️ linting
Browse files Browse the repository at this point in the history
  • Loading branch information
CourtHive committed Jun 25, 2024
1 parent 47aa900 commit e555a06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/mutate/timeItems/matchUps/matchUpTimeItems.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { modifyMatchUpNotice } from '../../notifications/drawNotifications';
import { addTimeItem } from '../addTimeItem';
import { modifyMatchUpNotice } from '@Mutate/notifications/drawNotifications';
import { addTimeItem } from '@Mutate/timeItems//addTimeItem';
import { findDrawMatchUp } from '@Acquire/findDrawMatchUp';

// constants and types
Expand Down
2 changes: 1 addition & 1 deletion src/query/venues/getScheduleTimes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export function getScheduleTimes(params): ResultType & {
});

if (calculateStartTimeFromCourts && firstTimeSlotStartTime) {
startTime = firstTimeSlotStartTime ? firstTimeSlotStartTime : startTime;
startTime = firstTimeSlotStartTime ?? startTime;
}

// startTime, endTime and periodLength are used to calculate periodCount
Expand Down

0 comments on commit e555a06

Please sign in to comment.