Skip to content

Commit

Permalink
refactor: remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ramenhog committed Oct 7, 2024
1 parent f92bc14 commit 9ae040d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/victory-core/src/victory-util/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export const toTransformString = function (obj, ...more) {
* @returns {Array} An array of 5 hex string values composing a color scale.
*/
export function getColorScale(name, theme) {
console.log("🚀 ~ getColorScale ~ name:", name);
const {
palette: {
grayscale = ["#cccccc", "#969696", "#636363", "#252525"],
Expand Down
1 change: 0 additions & 1 deletion packages/victory-stack/src/helper-methods.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,6 @@ export function getChildren(initialProps, childComponents, calculatedProps) {
const childProps = getChildProps(props, newCalculatedProps);
const parentName = props.name || "stack";
const { theme } = props;
console.log("🚀 ~ getChildren ~ theme:", theme);
return children.map((child, index) => {
const role = child.type && child.type.role;
const data = datasets[index];
Expand Down

0 comments on commit 9ae040d

Please sign in to comment.