Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jpuri committed Aug 19, 2024
1 parent c55ef3a commit a54f016
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ class TransactionReview extends PureComponent {
confirmDisabled={
transactionConfirmed || Boolean(error) || isAnimating
}
confirmButtonState={this.getConfirmButtonState()}
confirmButtonState={this.getConfirmButtonState.bind(this)()}
>
<View style={styles.actionViewChildren}>
<ScrollView nestedScrollEnabled>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ jest.mock('react-redux', () => {
...mockState,
transaction: {
...mockState.transaction,
id: 123,
securityAlertResponses: {
123: securityAlertResponse,
},
Expand Down Expand Up @@ -208,6 +209,7 @@ describe('TransactionReview', () => {
block: 123,
req: {},
chainId: '0x1',
features: ['test', 'test'],
};

const blockaidMetricsParamsSpy = jest
Expand Down

0 comments on commit a54f016

Please sign in to comment.