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 { HTMLProps, ReactNode } from "react";
import clsx from "clsx"; import clsx from "clsx";
const useStyles = makeStyles(({ props }) => { const useStyles = makeStyles({
console.log(props); appIconContainer: {
return { background: "rgb(58, 86, 199)",
appIconContainer: { display: "flex",
background: "rgb(58, 86, 199)", flexDirection: "column",
display: "flex", justifyContent: "center",
flexDirection: "column", alignItems: "center",
justifyContent: "center", borderRadius: "50%",
alignItems: "center", color: "#fff",
borderRadius: "50%", width: 50,
color: "#fff", height: 50,
width: 50, },
height: 50,
},
};
}); });
type Props = HTMLProps<HTMLDivElement> & { type Props = HTMLProps<HTMLDivElement> & {