Skip to content

Commit

Permalink
fix/#194 Delete imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ShinKwang2 committed Jul 9, 2024
1 parent 761d3a4 commit f5fd183
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/components/owner-calendar/AttendanceEdit.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ChangeEvent, useEffect, useState } from 'react';
import { useAttendance } from '../../contexts/Attendance-Context';
import InputBox from '../ui/InputBox';
import { Spacer, VStack } from '../ui/Stack';
import TimeBox from './TimeBox';
Expand All @@ -25,13 +24,10 @@ const AttendanceEdit = () => {
undefined
);

// const { attendance, changeAttendance } = useAttendance();
// console.log(attendance);
const [workPlaceEmployeeId, setWorkPlaceEmployeeId] = useState<
number | undefined
>();
const [startTime, setStartTime] = useState<Date | undefined>(undefined);
// console.log('🚀 AttendanceEdit startTime:', startTime);
const [endTime, setEndTime] = useState<Date | undefined>(undefined);
const [restMinute, setRestMinute] = useState<number>(0);
const [payPerHour, setPayPerHour] = useState<number>(MINIMUM_PAY_PER_HOUR);
Expand Down

0 comments on commit f5fd183

Please sign in to comment.