fix(SwiftUI onboarding): make pairing file text wrap, only show full onboarding if SwiftUI unstable feature is enabled

also update anisette servers
This commit is contained in:
naturecodevoid
2023-06-03 12:40:47 -07:00
parent 7e9aafe86e
commit e7f766095a
7 changed files with 34 additions and 7 deletions

View File

@@ -62,7 +62,7 @@ final class LaunchViewController: RSTLaunchViewController, UIDocumentPickerDeleg
#endif
#if !targetEnvironment(simulator)
if !UserDefaults.standard.onboardingComplete {
if UnstableFeatures.enabled(.swiftUI) && !UserDefaults.standard.onboardingComplete {
self.showOnboarding()
return
}