diff --git a/src/components/Creator/LeftPanel/LeftSettingsPanel/Anchor/Anchor.tsx b/src/components/Creator/LeftPanel/LeftSettingsPanel/Anchor/Anchor.tsx index a5416ae..551d30c 100644 --- a/src/components/Creator/LeftPanel/LeftSettingsPanel/Anchor/Anchor.tsx +++ b/src/components/Creator/LeftPanel/LeftSettingsPanel/Anchor/Anchor.tsx @@ -19,7 +19,6 @@ export default function Anchor() { setAnchor(value); const allAnchors = getAllStructureAnchors([...structure]); if (allAnchors.includes(value)) { - console.log(allAnchors, value) setShowErrorMessage(true); } else { setShowErrorMessage(false); diff --git a/src/components/Creator/LeftPanel/StylesPanel/Animations/Animations.tsx b/src/components/Creator/LeftPanel/StylesPanel/Animations/Animations.tsx index 67d3841..314abfc 100644 --- a/src/components/Creator/LeftPanel/StylesPanel/Animations/Animations.tsx +++ b/src/components/Creator/LeftPanel/StylesPanel/Animations/Animations.tsx @@ -44,7 +44,7 @@ export default function Animations(props: Props) { setDelays([...value.delays]); setDurations([...value.durations]); setAnimations([...value.animations]); - console.log({value}) + if (value.animations.includes('none')) { props.onChange('', 'animationIterationCount'); props.onChange('', 'animationDirection'); diff --git a/src/components/construction/Accordion/Accordion.tsx b/src/components/construction/Accordion/Accordion.tsx index 96d8768..ef39fd8 100644 --- a/src/components/construction/Accordion/Accordion.tsx +++ b/src/components/construction/Accordion/Accordion.tsx @@ -8,7 +8,6 @@ interface Props { export default function Accordion(props: Props) { const getChildrenItems = () => { - console.log(AccordionItem.name) return (Array.isArray(props.children) ? props.children : [props.children]) .flat() .filter((child) => child?.type?.name === AccordionItem.name); diff --git a/src/components/construction/ColorPicker/CanvasOpacity/CanvasOpacity.tsx b/src/components/construction/ColorPicker/CanvasOpacity/CanvasOpacity.tsx index 2ef0f0d..0bdc831 100644 --- a/src/components/construction/ColorPicker/CanvasOpacity/CanvasOpacity.tsx +++ b/src/components/construction/ColorPicker/CanvasOpacity/CanvasOpacity.tsx @@ -27,7 +27,6 @@ export default function CanvasOpacity(props: CanvasOpacityProps) { } } const setColor = () => { - console.log(props.color) const canvasOpacityCursorWidth = canvasOpacityCursorRef.current.width; const [, , , a] = props.color; setOpacity(a, false);