Skip to content

Commit

Permalink
fix(Violations): make boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-coleman committed Feb 15, 2024
1 parent 872f22c commit 1bb7027
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ReportActionItem/MoneyRequestView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ function MoneyRequestView({
<View style={[styles.flexRow, styles.optionRow, styles.justifyContentBetween, styles.alignItemsCenter, styles.ml5, styles.mr8]}>
<View>
<Text color={!transactionBillable ? theme.textSupporting : undefined}>{translate('common.billable')}</Text>
{getErrorForField('billable') && (
{!!getErrorForField('billable') && (
<ViolationMessages
violations={getViolationsForField('billable')}
containerStyle={[styles.mt1]}
Expand Down

0 comments on commit 1bb7027

Please sign in to comment.