Skip to content

Commit 4a5af08

Browse files
committed
remove console logs
1 parent 9689c26 commit 4a5af08

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

chartlets.js/packages/lib/src/plugins/mui/Skeleton.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,11 @@ export const Skeleton = ({
2525
isLoading,
2626
...props
2727
}: SkeletonProps) => {
28+
// Set default values if not available
2829
const opacity: number = props.opacity ?? 0.7;
2930
props.width = props.width ?? "100%";
3031
props.height = props.height ?? "100%";
31-
console.log("opacity", opacity);
32-
console.log("props.width", props.width);
33-
console.log("props.height", props.height);
32+
3433
return (
3534
<div style={{ position: "relative", ...style }} id={id}>
3635
{children}

0 commit comments

Comments
 (0)