From fc03e0b04d5938d551e1d7003d0fcb01c8d93b7e Mon Sep 17 00:00:00 2001 From: kgaidis-stripe <105514761+kgaidis-stripe@users.noreply.github.com> Date: Wed, 31 May 2023 13:12:57 -0400 Subject: [PATCH] Financial Connections: added a new scenarion (Partner D) (#2602) --- .../Playground/PlaygroundMainViewModel.swift | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Example/FinancialConnections Example/FinancialConnections Example/Playground/PlaygroundMainViewModel.swift b/Example/FinancialConnections Example/FinancialConnections Example/Playground/PlaygroundMainViewModel.swift index c988dbbb74..156e775cf5 100644 --- a/Example/FinancialConnections Example/FinancialConnections Example/Playground/PlaygroundMainViewModel.swift +++ b/Example/FinancialConnections Example/FinancialConnections Example/Playground/PlaygroundMainViewModel.swift @@ -78,9 +78,10 @@ final class PlaygroundMainViewModel: ObservableObject { enum CustomScenario: String, CaseIterable, Identifiable { case none = "none" case customKeys = "custom_keys" - case appToApp = "app_to_app" + case partnerD = "partner_d" case partnerF = "partner_f" case partnerM = "partner_m" + case appToApp = "app_to_app" /// Used for random bug bashes and could changes any time case bugBash = "bug_bash" @@ -94,12 +95,14 @@ final class PlaygroundMainViewModel: ObservableObject { return "Default" case .customKeys: return "Custom Keys" - case .appToApp: - return "App to App (Chase)" + case .partnerD: + return "Partner D" case .partnerF: return "Partner F" case .partnerM: return "Partner M" + case .appToApp: + return "App to App (Chase)" case .bugBash: return "Bug Bash" }