Skip to content

Commit

Permalink
fix: input disabled 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jikwan0327 committed Aug 31, 2023
1 parent 45a0648 commit 41a96c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@team-return/design-system",
"version": "1.1.0",
"version": "1.1.2",
"repository": {
"type": "git",
"url": "https://github.com/Team-Return/JOBIS-DESIGN-SYSTEM.git"
Expand Down
2 changes: 1 addition & 1 deletion src/components/input/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export interface InputProps
}

export const Input = ({
onChange,
label,
width = 30,
kind = 'DefaultInput',
Expand All @@ -48,6 +47,7 @@ export const Input = ({
<_BaseInput
{...props}
onKeyDown={onKeyDown}
disabled={disabled}
kind={kind}
error={error}
/>
Expand Down

0 comments on commit 41a96c4

Please sign in to comment.