@@ -11,11 +11,11 @@ const Flex = ({ className, ...props }) => {
 }
 
 const responsivePropCheck = (props, propName, componentName) => {
-    if (typeof props[propName] === 'boolean') {
-      return new Error (
-        `Warning! The \`${propName}\` prop supplied to \`${componentName}\` now sets width instead of setting display flex. See https://github.com/jxnblk/reflexbox`
-      )
-    }
+  if (typeof props[propName] === 'boolean') {
+    return new Error(
+      `Warning! The \`${propName}\` prop supplied to \`${componentName}\` now sets width instead of setting display flex. See https://github.com/jxnblk/reflexbox`
+    )
+  }
 }
 
 Flex.propTypes = {