-
Notifications
You must be signed in to change notification settings - Fork 0
관리자 페이지를 위한 사용자 페이지 경로 설정( issue #295) #296
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
d1f3bb0
98b4892
be3188b
14a922b
c76b0fe
e966764
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,7 +1,7 @@ | ||||||||
| import * as S from './PhoneComponent.styled'; | ||||||||
| import { ApplySchemeType } from '../../../pages/apply/Apply'; | ||||||||
| import { Control, FieldErrors } from 'react-hook-form'; | ||||||||
| import PhoneInput from './phoneComponentInput/PhoneComponentInput'; | ||||||||
| import { ApplySchemeType } from '../../../models/joinProject'; | ||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
- import { ApplySchemeType } from '../../../models/joinProject';
+ import { ApplySchemeType } from '../../../../models/joinProject';📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||
|
|
||||||||
| interface PhoneComponentProps { | ||||||||
| control: Control<ApplySchemeType>; | ||||||||
|
|
||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,10 @@ | ||
| import { Link } from 'react-router-dom'; | ||
| import { ROUTES } from '../../../../constants/routes'; | ||
| import { useMyAppliedStatusList } from '../../../../hooks/useMyInfo'; | ||
| import NoContent from '../../../common/noContent/NoContent'; | ||
| import * as S from './AppliedProjects.styled'; | ||
| import Spinner from '../../Spinner'; | ||
| import AppliedProjectsStatus from './appliedProjectsStatus/AppliedProjectsStatus'; | ||
| import NoContent from '../../../../common/noContent/NoContent'; | ||
| import { useMyAppliedStatusList } from '../../../../../hooks/user/useMyInfo'; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 훅 파일 경로 및 이름 불일치 확인 필요
🤖 Prompt for AI Agents |
||
| import { ROUTES } from '../../../../../constants/user/routes'; | ||
|
|
||
| export default function AppliedProjects() { | ||
| const { myAppliedStatusListData, isLoading } = useMyAppliedStatusList(); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
잘못된 상대 경로 수정 필요
상대 경로
../../../models/joinProject가 현재 파일 위치 기준으로src/models/joinProject를 정확히 가리키지 않습니다. 올바른 경로는../../../../models/joinProject이어야 합니다.📝 Committable suggestion
🤖 Prompt for AI Agents