This repository was archived by the owner on Jan 2, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 9 files changed +12
-14
lines changed
academics/undergraduate/curriculum Expand file tree Collapse file tree 9 files changed +12
-14
lines changed Original file line number Diff line number Diff line change 1- import '. /style.css' ;
1+ import '@/app/[locale]/academics/undergraduate/curriculum /style.css' ;
22
33import { getAcademicsByPostType } from '@/apis/v2/academics/[studentType]/[postType]' ;
44import CurriculumPageContent from '@/app/[locale]/academics/undergraduate/curriculum/CurriculumPageContent' ;
Original file line number Diff line number Diff line change 11import { CouncilReport , getCouncilReportList } from '@/apis/v2/council/report' ;
2- import NaviBarClose from '@/assets/NaviBar_Close.svg' ;
2+ import NaviBarClose from '@/app/[locale]/community/council/report/ assets/NaviBar_Close.svg' ;
33import Image from '@/components/common/Image' ;
44import LoginVisible from '@/components/common/LoginVisible' ;
55import PageLayout from '@/components/layout/pageLayout/PageLayout' ;
Original file line number Diff line number Diff line change 11import { MouseEventHandler } from 'react' ;
22import { useFormStatus } from 'react-dom' ;
33
4+ import { GrayButton } from '@/components/common/Buttons' ;
5+ import AlertModal from '@/components/modal/AlertModal' ;
46import useModal from '@/utils/hooks/useModal' ;
57import { CustomError } from '@/utils/serverActionError' ;
68
7- import AlertModal from '../modal/AlertModal' ;
8- import { GrayButton } from './Buttons' ;
9-
109export const ConfirmButton = ( {
1110 title,
1211 ref,
Original file line number Diff line number Diff line change 11import { CSSProperties , ReactNode } from 'react' ;
22
3- import styles from '@/components/common/style.module.css' ;
3+ import styles from '@/components/common/CornerFoldedRectangle/ style.module.css' ;
44import { ColorTheme } from '@/constants/color' ;
55import useStyle from '@/utils/hooks/useStyle' ;
66
Original file line number Diff line number Diff line change 1- import '. /calendar.css' ;
1+ import '@/components/common /calendar.css' ;
22
33import dayjs , { Dayjs } from 'dayjs' ;
44import Calendar from 'react-calendar' ;
Original file line number Diff line number Diff line change 11'use client' ;
22
3- import '. /suneditor.css' ;
4- import '. /suneditor-contents.css' ;
3+ import '@/components/form/html /suneditor.css' ;
4+ import '@/components/form/html /suneditor-contents.css' ;
55
66import { useEffect , useState } from 'react' ;
77import { RegisterOptions , useFormContext } from 'react-hook-form' ;
Original file line number Diff line number Diff line change 1- import '. /suneditor-contents.css' ;
1+ import '@/components/form/html /suneditor-contents.css' ;
22
33import { Autolinker } from 'autolinker' ;
44import parse , { DOMNode , Element } from 'html-react-parser' ;
Original file line number Diff line number Diff line change 11'use client' ;
22
3- import { useModalStore } from '@/stores/ModalStore' ;
43import { Fragment } from 'react' ;
54
5+ import { useModalStore } from '@/stores/ModalStore' ;
6+
67export default function ModalContainer ( ) {
78 const modals = useModalStore ( ( state ) => state . modals ) ;
89 return modals . map ( ( Modal , index ) => < Fragment key = { index } > { Modal } </ Fragment > ) ;
Original file line number Diff line number Diff line change 1- import { UserState } from '@/contexts/SessionContext' ;
2-
31/**
42 * ํ์ด์ง๋ณ ๊ถํ ๊ฒ์ฌ
53 * ๊ถํ๊ฐ์ ๊ณ์ธต๊ด๊ณ๊ฐ ๋ช
ํํ์ง ์์ผ๋ฏ๋ก(์๊ตฌ์ฌํญ์ด ๋ฐ๋ ์๋ ์์ผ๋ฏ๋ก) ๋ฐฐ์ด๋ก ๋ฐํ
64 */
7- export const getRequiredAuth = ( pathname : string ) : UserState [ ] => {
5+ export const getRequiredAuth = ( pathname : string ) => {
86 if ( pathname . startsWith ( '/en' ) ) pathname = pathname . slice ( 3 ) ;
97
108 const segments = pathname . split ( '/' ) . filter ( Boolean ) ;
You canโt perform that action at this time.
0 commit comments