From 29b49d6f43bb03c32c93e5df3811c758c5b01104 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Wed, 20 Feb 2019 10:23:11 -0500 Subject: [PATCH] Enable new onboarding in production. --- Signal/src/AppDelegate.m | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Signal/src/AppDelegate.m b/Signal/src/AppDelegate.m index 03fc5d67a..1a6860b7b 100644 --- a/Signal/src/AppDelegate.m +++ b/Signal/src/AppDelegate.m @@ -1479,11 +1479,7 @@ static NSTimeInterval launchStartedAt; rootViewController = [HomeViewController new]; } } else { - if (OWSIsDebugBuild()) { - rootViewController = [[OnboardingController new] initialViewController]; - } else { - rootViewController = [RegistrationViewController new]; - } + rootViewController = [[OnboardingController new] initialViewController]; navigationBarHidden = YES; } OWSAssertDebug(rootViewController);