Skip to content

Commit

Permalink
fix: 대소문자 고치기
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene028 committed Nov 28, 2023
1 parent 1c64dad commit 825ea14
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pages/academy/editAcademy/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ import { useNavigate } from 'react-router-dom'
import { useLocation } from 'react-router-dom'
import { useMutation } from '@tanstack/react-query'
import { useAtom } from 'jotai'
import AddAcademyInfo from '../addSchedule/AddAcademyInfo'
import AddAcademyName from '../addSchedule/AddAcademyName'
import AddMemo from '../addSchedule/AddMemo'
import AddPayment from '../addSchedule/AddPayment'
import AddSchedule from '../addSchedule/AddSchedule'
import Button from '@/components/common/button/Button'
import Spacing from '@/components/common/spacing/Spacing'
import { editAcademyInfo } from '@/libs/api/academy/AcademyApi'
Expand All @@ -17,6 +12,11 @@ import { GetAllDashBoardResponse } from '@/libs/api/dashboard/DashBoardType'
import { initialAcademyInfoAtom } from '@/libs/store/academyInfo'
import { academyInfoAtom } from '@/libs/store/academyInfo'
import { childAtom } from '@/libs/store/childInfoAtom'
import AddAcademyInfo from '@/pages/academy/addSchedule/AddAcademyInfo'

Check failure on line 15 in src/pages/academy/editAcademy/index.tsx

View workflow job for this annotation

GitHub Actions / build_and_deploy

Cannot find module '@/pages/academy/addSchedule/AddAcademyInfo' or its corresponding type declarations.
import AddAcademyName from '@/pages/academy/addSchedule/AddAcademyName'

Check failure on line 16 in src/pages/academy/editAcademy/index.tsx

View workflow job for this annotation

GitHub Actions / build_and_deploy

Cannot find module '@/pages/academy/addSchedule/AddAcademyName' or its corresponding type declarations.
import AddMemo from '@/pages/academy/addSchedule/AddMemo'

Check failure on line 17 in src/pages/academy/editAcademy/index.tsx

View workflow job for this annotation

GitHub Actions / build_and_deploy

Cannot find module '@/pages/academy/addSchedule/AddMemo' or its corresponding type declarations.
import AddPayment from '@/pages/academy/addSchedule/AddPayment'

Check failure on line 18 in src/pages/academy/editAcademy/index.tsx

View workflow job for this annotation

GitHub Actions / build_and_deploy

Cannot find module '@/pages/academy/addSchedule/AddPayment' or its corresponding type declarations.
import AddSchedule from '@/pages/academy/addSchedule/AddSchedule'

Check failure on line 19 in src/pages/academy/editAcademy/index.tsx

View workflow job for this annotation

GitHub Actions / build_and_deploy

Cannot find module '@/pages/academy/addSchedule/AddSchedule' or its corresponding type declarations.
const EditAcademy = () => {
const [academyInfo, setAcademyInfo] = useAtom(academyInfoAtom)
const [childInfo, setChildrenInfo] = useAtom(childAtom)
Expand Down

0 comments on commit 825ea14

Please sign in to comment.