Skip to content

Commit

Permalink
Fix console warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mountiny committed Oct 11, 2023
1 parent ddc2214 commit 1a51105
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/EditSplitBillPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const propTypes = {
}).isRequired,

/** The current transaction */
transaction: PropTypes.shape(transactionPropTypes).isRequired,
transaction: transactionPropTypes.isRequired,

/** The draft transaction that holds data to be persisted on the current transaction */
draftTransaction: PropTypes.shape(transactionPropTypes),
Expand Down
2 changes: 1 addition & 1 deletion src/pages/iou/SplitBillDetailsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const propTypes = {
reportActions: PropTypes.shape(reportActionPropTypes),

/** The current transaction */
transaction: PropTypes.shape(transactionPropTypes).isRequired,
transaction: transactionPropTypes.isRequired,

/** The draft transaction that holds data to be persisited on the current transaction */
draftTransaction: PropTypes.shape(transactionPropTypes),
Expand Down

0 comments on commit 1a51105

Please sign in to comment.