Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/ui/components/selectors/time-selector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function TimeSelector({
}: TimeSelectorProps) {
const isMobile = useCheckMobile();

let options = Array.from({ length: 24 }, (_, i) => {
const options = Array.from({ length: 24 }, (_, i) => {
const hour = i % 12 === 0 ? 12 : i % 12;
const period = i < 12 ? "am" : "pm";
return { label: `${hour}:00 ${period}`, value: i };
Expand Down
1 change: 0 additions & 1 deletion app/ui/components/weekday-calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ type WeekdayCalendarProps = {
export default function WeekdayCalendar({
selectedDays,
onChange,
inDrawer = false,
}: WeekdayCalendarProps) {
// const [startMonday, setStartMonday] = useState(false);
// const reorderedDays = startMonday ? [...days.slice(1), days[0]] : days;
Expand Down