Skip to content

Commit

Permalink
fix(mobile): Activity hideable amount (#552)
Browse files Browse the repository at this point in the history
  • Loading branch information
sorokin0andrey authored Sep 27, 2023
1 parent 62c1556 commit 6131b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/components/ActivityList/ActionListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export const ActionListItem = memo<ActionListItem>((props: ActionListItem) => {

return action.simple_preview.value ?? AmountFormatter.sign.minus;
}
}, [action.destination, action.amount, action.simple_preview, props.value]);
}, [action.destination, action.amount, action.simple_preview, props.value, formatNano]);

const subvalue = useMemo(() => {
if (props.subvalue !== undefined) {
Expand Down

0 comments on commit 6131b26

Please sign in to comment.