Skip to content

Commit

Permalink
fix: 머지 전 타입 에러 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
ZUITOPIA committed Dec 19, 2024
1 parent ec68a2a commit ba2e7c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/customer/pet/edit/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export default function PetEdit() {
label="몸무게"
placeholder="예) 22"
extraText="kg"
value={puppyWeight}
value={String(puppyWeight)}
onChange={handleWeightChange}
/>
</Style.Wrapper>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/designer/signup-detail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export default function DesignerSignUpDetail() {
<CustomInput
placeholder="예) 22"
extraText="년"
value={shopDetailInfo.yearOfExperience}
value={String(shopDetailInfo.yearOfExperience)}
onChange={(e) =>
handleInputChange("yearOfExperience", Number(e.target.value))
}
Expand Down

0 comments on commit ba2e7c1

Please sign in to comment.