import Combine import SwiftUI @main @MainActor struct ConversationsClassic: App { private var clientsStore = ClientsStore() private var navigationStore = NavigationStore() init() { // There's a bug on iOS 17 where sheet may not load with large title, even if modifiers are set, which causes some tests to fail // https://stackoverflow.com/questions/77253122/swiftui-navigationstack-title-loads-inline-instead-of-large-when-sheet-is-pres UINavigationBar.appearance().prefersLargeTitles = true } var body: some Scene { WindowGroup { AppRootView() .environmentObject(clientsStore) } } }