Skip to content

Commit

Permalink
removed console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
brauliodiez committed Dec 8, 2024
1 parent 2827827 commit 44d72a7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
2 changes: 0 additions & 2 deletions src/core/providers/canvas/use-selection.hook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,6 @@ export const useSelection = (
shape => shape.id === selectedShapeId
);

console.log('Active Shape', activeShape);

return activeShape;
};

Expand Down
8 changes: 0 additions & 8 deletions src/pods/properties/components/show-prop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,5 @@ export const ShowProp: React.FC<Props> = props => {
[multipleSelectionPropsInCommon, propKey, propValue]
);

if (propKey === 'strokeStyle') {
console.log('Key', propKey);
console.log('showProp', showProp);
console.log(
'multipleSelection propkey',
multipleSelectionPropsInCommon[propKey]
);
}
return <>{showProp ? children : null}</>;
};

0 comments on commit 44d72a7

Please sign in to comment.