Skip to content

Commit

Permalink
fix: 미션등록 placeholder 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JUNOSHON committed Jan 29, 2024
1 parent 1533beb commit 38ba0a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/mission/new/MissionRegistration.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default function MissionRegistration() {
<section>
<Input
type="text"
placeholder="미션명을 입력하세요"
placeholder="미션명 입력"
name="미션명"
required
maxLength={20}
Expand All @@ -62,7 +62,7 @@ export default function MissionRegistration() {
/>
<Input
type="text"
placeholder="미션 내용을 입력"
placeholder="미션 내용 입력"
name="미션내용"
maxLength={30}
value={missionContentInput}
Expand All @@ -75,7 +75,7 @@ export default function MissionRegistration() {
title="카테고리"
required
list={MISSION_CATEGORY_LIST}
placeholder="카테고리를 선택해주세요."
placeholder="카테고리 선택"
selected={missionCategory}
onSelect={(item) => setMissionCategory(item)}
/>
Expand Down

0 comments on commit 38ba0a3

Please sign in to comment.