Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
storywithoutend committed Nov 6, 2024
1 parent 5860ec0 commit 080a906
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/@atoms/PlusMinusControl/PlusMinusControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,9 @@ export const PlusMinusControl = forwardRef(
}}
onBlur={handleBlur}
/>
<Label data-testid="plus-minus-control-label" $highlighted={highlighted}>{t(`unit.${unit}`, { count: value })}</Label>
<Label data-testid="plus-minus-control-label" $highlighted={highlighted}>
{t(`unit.${unit}`, { count: value })}
</Label>
</LabelContainer>
<Button
type="button"
Expand Down

0 comments on commit 080a906

Please sign in to comment.