Skip to content

Commit

Permalink
chore: run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperswitch-bot[bot] committed Jan 18, 2024
1 parent a46f4da commit 699b256
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/router/src/services/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,8 @@ where
let status_code = response
.as_ref()
.map(|i| {
i.clone().map_or_else(|value| value.status_code, |value| value.status_code)
i.clone()
.map_or_else(|value| value.status_code, |value| value.status_code)
})
.unwrap_or_default();
let connector_event = ConnectorEvent::new(
Expand Down

0 comments on commit 699b256

Please sign in to comment.