Skip to content

Commit

Permalink
Fix new checkmark size in paid IOU card
Browse files Browse the repository at this point in the history
  • Loading branch information
grgia committed Nov 22, 2022
1 parent f0e0fe9 commit 1952fca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/ReportActionItem/IOUPreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import lodashGet from 'lodash/get';
import _ from 'underscore';
import compose from '../../libs/compose';
import styles from '../../styles/styles';
import variables from '../../styles/variables';
import ONYXKEYS from '../../ONYXKEYS';
import MultipleAvatars from '../MultipleAvatars';
import withLocalize, {withLocalizePropTypes} from '../withLocalize';
Expand Down Expand Up @@ -152,7 +153,7 @@ const IOUPreview = (props) => {
</Text>
{!props.iouReport.hasOutstandingIOU && (
<View style={styles.iouPreviewBoxCheckmark}>
<Icon src={Expensicons.Checkmark} fill={themeColors.iconSuccessFill} />
<Icon src={Expensicons.Checkmark} fill={themeColors.iconSuccessFill} height={variables.iconSizeSmall} />
</View>
)}
</View>
Expand Down

0 comments on commit 1952fca

Please sign in to comment.