Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
외부 지원서 URL 편집을 위한 UI 컴포넌트가 누락되었습니다.
externalApplicationUrl속성이updatedData에 추가되었지만, 사용자가 이 값을 편집할 수 있는 UI 컴포넌트(예: InputField)가 JSX에 없습니다. 현재 구현으로는 기존 값만 다시 전송되며, 실제로 URL을 수정할 수 없습니다.다음과 같이 외부 지원서 URL을 편집할 수 있는 입력 필드를 추가해야 합니다:
const [recruitmentTarget, setRecruitmentTarget] = useState(''); const [description, setDescription] = useState(''); + const [externalApplicationUrl, setExternalApplicationUrl] = useState('');setRecruitmentTarget((prev) => prev || clubDetail.recruitmentTarget || ''); setDescription((prev) => prev || clubDetail.description || ''); + setExternalApplicationUrl((prev) => prev || clubDetail.externalApplicationUrl || '');externalApplicationUrl: clubDetail.externalApplicationUrl ?? '' + externalApplicationUrl: externalApplicationUrl<InputField label='모집 대상' placeholder='모집 대상을 입력해주세요.' type='text' value={recruitmentTarget} onChange={(e) => setRecruitmentTarget(e.target.value)} onClear={() => setRecruitmentTarget('')} maxLength={10} /> + <InputField + label='외부 지원서 URL' + placeholder='외부 지원서 URL을 입력해주세요.' + type='url' + value={externalApplicationUrl} + onChange={(e) => setExternalApplicationUrl(e.target.value)} + onClear={() => setExternalApplicationUrl('')} + />🤖 Prompt for AI Agents