Skip to content

Commit

Permalink
revert AreaChart classname order
Browse files Browse the repository at this point in the history
  • Loading branch information
pyyding committed May 9, 2024
1 parent 143888c commit 7539949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/ChartTooltip/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const ChartTooltipContent: React.FC<ContentProps> = ({
}) => {
return (
<div
className={cx(className, "bg-gray-900 px-3 py-2 rounded-md")}
className={cx("bg-gray-900 px-3 py-2 rounded-md", className)}
{...rest}
>
{children}
Expand Down

0 comments on commit 7539949

Please sign in to comment.