Skip to content

Commit

Permalink
fix: silly mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamKelley committed Jul 8, 2024
1 parent 7408fcb commit fab1dd0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/dataviz/src/BarUnits/BarUnits.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ export const BarUnits = (props: BarUnitsProps) => {
return child;
});

return <>{childrenProp}</>;
return <>{children}</>;
};
2 changes: 1 addition & 1 deletion packages/dataviz/src/LinearScale/LinearScale.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ export const LinearScale = (props: LinearScaleProps) => {
return child;
});

return <>{childrenProp}</>;
return <>{children}</>;
};
2 changes: 1 addition & 1 deletion packages/dataviz/src/LinearUnits/LinearUnits.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ export const LinearUnits = (props: LinearUnitsProps) => {
return child;
});

return <>{childrenProp}</>;
return <>{children}</>;
};
2 changes: 1 addition & 1 deletion packages/dataviz/src/RadialBar/RadialBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ export const RadialBar = (props: RadialBarProps) => {
return child;
});

return <>{childrenProp}</>;
return <>{children}</>;
};
2 changes: 1 addition & 1 deletion packages/dataviz/src/RadialBarScale/RadialBarScale.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ export const RadialBarScale = (props: RadialBarScaleProps) => {
return child;
});

return <>{childrenProp}</>;
return <>{children}</>;
};
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ export const RadialBarSegments = (props: RadialBarSegmentsProps) => {
return child;
});

return <>{childrenProp}</>;
return <>{children}</>;
};
2 changes: 1 addition & 1 deletion packages/dataviz/src/RadialBarUnits/RadialBarUnits.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ export const RadialBarUnits = (props: RadialBarUnitsProps) => {
return child;
});

return <>{childrenProp}</>;
return <>{children}</>;
};

0 comments on commit fab1dd0

Please sign in to comment.