Skip to content

Commit

Permalink
fix: remove redundant readonly condition
Browse files Browse the repository at this point in the history
  • Loading branch information
dominictb committed Aug 22, 2024
1 parent 7c5d6f8 commit 9f34483
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 @@ -672,7 +672,7 @@ function MoneyRequestView({
accessibilityLabel={translate('common.billable')}
isOn={updatedTransaction?.billable ?? !!transactionBillable}
onToggle={saveBillable}
disabled={!canEdit || readonly}
disabled={!canEdit}
/>
</View>
)}
Expand Down

0 comments on commit 9f34483

Please sign in to comment.