diff --git a/.changeset/sharp-plums-kneel.md b/.changeset/sharp-plums-kneel.md new file mode 100644 index 0000000..a6a2a1e --- /dev/null +++ b/.changeset/sharp-plums-kneel.md @@ -0,0 +1,5 @@ +--- +"@saleor/apps-shared": patch +--- + +Remove not needed console log diff --git a/packages/shared/src/app-icon/app-icon.tsx b/packages/shared/src/app-icon/app-icon.tsx index 2a6d645..5086634 100644 --- a/packages/shared/src/app-icon/app-icon.tsx +++ b/packages/shared/src/app-icon/app-icon.tsx @@ -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 & {