Remove console.log from shared / AppIcon (#153)
This commit is contained in:
parent
a58be823f4
commit
648d99b4f5
2 changed files with 17 additions and 15 deletions
5
.changeset/sharp-plums-kneel.md
Normal file
5
.changeset/sharp-plums-kneel.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
"@saleor/apps-shared": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Remove not needed console log
|
|
@ -3,9 +3,7 @@ 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);
|
|
||||||
return {
|
|
||||||
appIconContainer: {
|
appIconContainer: {
|
||||||
background: "rgb(58, 86, 199)",
|
background: "rgb(58, 86, 199)",
|
||||||
display: "flex",
|
display: "flex",
|
||||||
|
@ -17,7 +15,6 @@ const useStyles = makeStyles(({ props }) => {
|
||||||
width: 50,
|
width: 50,
|
||||||
height: 50,
|
height: 50,
|
||||||
},
|
},
|
||||||
};
|
|
||||||
});
|
});
|
||||||
|
|
||||||
type Props = HTMLProps<HTMLDivElement> & {
|
type Props = HTMLProps<HTMLDivElement> & {
|
||||||
|
|
Loading…
Reference in a new issue