From b8eea0fd4a1852e48429f72650fcf2b8040e7f04 Mon Sep 17 00:00:00 2001 From: fernandomg Date: Thu, 30 Jul 2020 17:07:22 -0300 Subject: [PATCH] remove `console.log` and `debugger` --- src/utils/modals/GenericModal/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils/modals/GenericModal/index.tsx b/src/utils/modals/GenericModal/index.tsx index 85dfb233..e7880831 100644 --- a/src/utils/modals/GenericModal/index.tsx +++ b/src/utils/modals/GenericModal/index.tsx @@ -17,7 +17,7 @@ const StyledButton = styled.button` height: 26px; span { - margin-right: 0px; + margin-right: 0; } :focus { @@ -96,8 +96,7 @@ const GenericModal = ({ smallHeight, }: GenericModalProps & { smallHeight: boolean }) => { const classes = useStyles({ smallHeight }); - console.log('smallHeight: ', smallHeight); - debugger; + return (
@@ -127,4 +126,5 @@ const MediaModal = (props: GenericModalProps): React.ReactElement => ( {(matches) => } ); + export default MediaModal;