diff --git a/src/ui/components/Textarea.tsx b/src/ui/components/Textarea.tsx index 91fa4dd97..53db5261f 100644 --- a/src/ui/components/Textarea.tsx +++ b/src/ui/components/Textarea.tsx @@ -9,7 +9,7 @@ import styled from 'react-emotion'; import {inputStyle} from './Input'; export default styled('textarea')(({compact}: {compact?: boolean}) => ({ - ...inputStyle(compact), + ...inputStyle(compact || false), lineHeight: 'normal', padding: compact ? '5px' : '8px', resize: 'none',