Skip to content

Commit

Permalink
fix(ui-kit): 타이포그래피 타입 깨지는 이슈 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-moon committed Jan 10, 2021
1 parent bcf8652 commit 41ade6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui-kit/src/components/Selection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const Selection = (
) => {
const [innerValue, setInnerValue] = useState(value ?? '');
const iconColor = disabled ? colors.gray60 : colors.gray40;
const typography: Typographys = size === 'large' ? 'content' : 'content2';
const typography: Typographys = size === 'large' ? 'p1' : 'p2';

useEffect(() => setInnerValue(value ?? ''), [value]);

Expand Down

0 comments on commit 41ade6b

Please sign in to comment.