Auto fix broken rules

This commit is contained in:
Pavel Dohnal
2019-01-23 09:47:58 +01:00
parent 0b062cef09
commit e694438033
62 changed files with 516 additions and 325 deletions

View File

@@ -4,9 +4,9 @@ import MailPoet from 'mailpoet';
const PrintBoolean = props => (
<span>
{(props.children === true && props.truthy) ||
(props.children === false && props.falsy) ||
(props.unknown)}
{(props.children === true && props.truthy)
|| (props.children === false && props.falsy)
|| (props.unknown)}
</span>
);