Remove console.log from shared / AppIcon (#153)

This commit is contained in:
Lukasz Ostrowski 2023-02-14 12:44:26 +01:00 committed by GitHub
parent a58be823f4
commit 648d99b4f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 15 deletions

View file

@ -0,0 +1,5 @@
---
"@saleor/apps-shared": patch
---
Remove not needed console log

View file

@ -3,21 +3,18 @@ import { makeStyles } from "@saleor/macaw-ui";
import { HTMLProps, ReactNode } from "react";
import clsx from "clsx";
const useStyles = makeStyles(({ props }) => {
console.log(props);
return {
appIconContainer: {
background: "rgb(58, 86, 199)",
display: "flex",
flexDirection: "column",
justifyContent: "center",
alignItems: "center",
borderRadius: "50%",
color: "#fff",
width: 50,
height: 50,
},
};
const useStyles = makeStyles({
appIconContainer: {
background: "rgb(58, 86, 199)",
display: "flex",
flexDirection: "column",
justifyContent: "center",
alignItems: "center",
borderRadius: "50%",
color: "#fff",
width: 50,
height: 50,
},
});
type Props = HTMLProps<HTMLDivElement> & {