Skip to content

Commit

Permalink
add weight unit to quantity
Browse files Browse the repository at this point in the history
  • Loading branch information
taronaleksanian committed Oct 21, 2024
1 parent 09b00a6 commit 4a08328
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/modules/pack/components/PackTable/ItemList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ export const ItemList = ({
style={{
color: currentTheme.colors.text,
marginLeft: responsive.xxs ? 10 : 20,
width: responsive.xxs ? 50 : 80,
width: responsive.xxs ? 80 : 110,
fontSize: responsive.xxs ? 10 : responsive.sm ? 12 : 14,
}}
>
{`Weight: ${convertWeight(item.weight, SMALLEST_ITEM_UNIT, item.unit)}`}
{`Weight: ${convertWeight(item.weight, SMALLEST_ITEM_UNIT, item.unit)} ${item.unit}`}
</RText>
</RStack>

Expand Down

0 comments on commit 4a08328

Please sign in to comment.