Skip to content

Commit

Permalink
[APP-183] Input 컴포넌트 capitalize 기능 비활성화 (#155)
Browse files Browse the repository at this point in the history
# Key Changes

- Input 컴포넌트의 자동 capitalize 기능을 제한하였습니다.

# Details

- text input 컴포넌트에 아래와 같은 prop를 추가하였습니다.
```typescript
autoCapitalize="none"
``` 

# Closes Issue

close #150
  • Loading branch information
eunbae0 authored Nov 18, 2023
1 parent bc20f56 commit fb6eceb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/molecules/common/forms/input/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ const Input = ({
value={value}
placeholderTextColor={placeholderTextColor}
onChangeText={onChangeText}
autoCapitalize="none"
{...props}
/>
<S.InputRightBox>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const SearchInput = ({
placeholderTextColor={placeholderTextColor}
multiline={false}
returnKeyType="search"
autoCapitalize="none"
{...props}
/>
{children}
Expand Down

0 comments on commit fb6eceb

Please sign in to comment.