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;