Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ShankarSinghC committed Jan 9, 2024
1 parent 7a65be3 commit 6b773ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/router/src/core/payments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1808,7 +1808,7 @@ where

let apple_pay_flow = decide_apple_pay_flow(
payment_method_type,
Some(&merchant_connector_account),
Some(merchant_connector_account),
);

let is_connector_tokenization_enabled =
Expand Down
2 changes: 1 addition & 1 deletion crates/router/src/core/payments/transformers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ where

let apple_pay_flow = payments::decide_apple_pay_flow(
&payment_data.payment_attempt.payment_method_type,
Some(&merchant_connector_account),
Some(merchant_connector_account),
);

router_data = types::RouterData {
Expand Down

0 comments on commit 6b773ac

Please sign in to comment.