Skip to content

Commit

Permalink
[deploy]: 3차 스프린트 배포 3트
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene028 committed Nov 28, 2023
1 parent ce1e99e commit 1c64dad
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
11 changes: 6 additions & 5 deletions src/pages/academy/AddSchedule/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@ import { useEffect, useRef } from 'react'
import { useNavigate } from 'react-router-dom'
import { useMutation } from '@tanstack/react-query'
import { useAtom } from 'jotai'
import AddAcademyInfo from './AddAcademyInfo'
import AddAcademyName from './AddAcademyName'
import AddMemo from './AddMemo'
import AddPayment from './AddPayment'
import AddSchedule from './AddSchedule'
import Button from '@/components/common/button/Button'
import Spacing from '@/components/common/spacing/Spacing'
import { postDashboardInfo } from '@/libs/api/academy/AcademyApi'
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'
import AddAcademyName from '@/pages/academy/addSchedule/AddAcademyName'
import AddMemo from '@/pages/academy/addSchedule/AddMemo'
import AddPayment from '@/pages/academy/addSchedule/AddPayment'
import AddSchedule from '@/pages/academy/addSchedule/AddSchedule'

const AddAcademy = () => {
const [childInfo, setChildrenInfo] = useAtom(childAtom)
const [academyInfo, setAcademyInfo] = useAtom(academyInfoAtom)
Expand Down
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,6 +3,11 @@ 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'

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

View workflow job for this annotation

GitHub Actions / build_and_deploy

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

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

View workflow job for this annotation

GitHub Actions / build_and_deploy

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

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

View workflow job for this annotation

GitHub Actions / build_and_deploy

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

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

View workflow job for this annotation

GitHub Actions / build_and_deploy

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

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

View workflow job for this annotation

GitHub Actions / build_and_deploy

Cannot find module '../addSchedule/AddSchedule' or its corresponding type declarations.
import Button from '@/components/common/button/Button'
import Spacing from '@/components/common/spacing/Spacing'
import { editAcademyInfo } from '@/libs/api/academy/AcademyApi'
Expand All @@ -12,11 +17,6 @@ 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'
import AddAcademyName from '@/pages/academy/addSchedule/AddAcademyName'
import AddMemo from '@/pages/academy/addSchedule/AddMemo'
import AddPayment from '@/pages/academy/addSchedule/AddPayment'
import AddSchedule from '@/pages/academy/addSchedule/AddSchedule'
const EditAcademy = () => {
const [academyInfo, setAcademyInfo] = useAtom(academyInfoAtom)
const [childInfo, setChildrenInfo] = useAtom(childAtom)
Expand Down

0 comments on commit 1c64dad

Please sign in to comment.