remove stray console.log (#86440)

This commit is contained in:
Ashley Harrison
2024-04-17 15:43:38 +02:00
committed by GitHub
parent 33e8292386
commit 60abf01526
@@ -15,7 +15,6 @@ export interface Props {
export const GrotCTA = ({ width = 'auto', height }: Props) => {
const styles = useStyles2(getStyles);
console.log(styles);
return <SVG src={grotCTASvg} className={styles.svg} height={height} width={width} />;
};