From cdf5999509dda9d98c716bf5319c1a539e542496 Mon Sep 17 00:00:00 2001 From: eliabejr Date: Tue, 22 Jan 2019 11:16:09 -0300 Subject: [PATCH] chore(send-view-additional-options): remove eslint comments --- app/components/select.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/components/select.js b/app/components/select.js index f34093a..d3ed567 100644 --- a/app/components/select.js +++ b/app/components/select.js @@ -74,12 +74,12 @@ const OptionsWrapper = styled.div` overflow-y: auto; `; -/* eslint-disable max-len */ const Option = styled.button` border: none; background: none; height: 60px; - background-color: ${props => props.bgColor || props.theme.colors.inputBackground}; + background-color: ${ + props => props.bgColor || props.theme.colors.inputBackground}; cursor: pointer; z-index: 99; text-transform: capitalize; @@ -88,7 +88,6 @@ const Option = styled.button` background-color: ${props => props.theme.colors.background}; } `; -/* eslint-enable max-len */ type Props = { value: string,