Skip to content

Commit

Permalink
[TM-1514] fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
dottyy committed Jan 2, 2025
1 parent 1ed55ba commit 7ce995d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const GoalProgressCard: FC<GoalProgressCardProps> = ({
{label}
</Text>
<When condition={!!totalValue}>
<img src="/images/graphic-5.png" alt="arrow-right" className="mb-2 size-32 lg:size-40" />
<img src="/images/graphic-5.png" alt="arrow-right" className="size-32 lg:size-40 mb-2" />
</When>
<Text variant="text-24-bold" className={classNames("flex w-full items-baseline", classNameLabelValue)}>
{value?.toLocaleString()}&nbsp;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const GoalProgressCardItem: FC<GoalProgressCardItemProps> = ({
const value = _val || 0;
return (
<div {...rest} className={classNames("flex w-full items-center", className)}>
<Icon name={iconName} className="mr-4 h-10 w-10 min-w-10" />
<Icon name={iconName} className="min-w-10 mr-4 h-10 w-10" />

<Text
variant={variantLabel ?? "text-16-light"}
Expand Down

0 comments on commit 7ce995d

Please sign in to comment.