Skip to content

Commit

Permalink
[FC] Adds lookup error handling (#10080)
Browse files Browse the repository at this point in the history
* Adds lookup error handling

* Does not display full screen error.
  • Loading branch information
carlosmuvi-stripe authored Feb 5, 2025
1 parent a087599 commit 602ba10
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,17 @@ internal class NetworkingLinkLoginWarmupViewModel @AssistedInject constructor(
)
},
)
onAsync(
NetworkingLinkLoginWarmupState::continueAsync,
onFail = { error ->
handleError(
extraMessage = "Error looking up account",
error = error,
displayErrorScreen = false,
pane = PANE
)
},
)
}

fun onContinueClick() {
Expand Down

0 comments on commit 602ba10

Please sign in to comment.