diff --git a/telltime/App/AppDelegate.swift b/telltime/App/AppDelegate.swift index 99535ef..ffb2009 100644 --- a/telltime/App/AppDelegate.swift +++ b/telltime/App/AppDelegate.swift @@ -6,7 +6,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { _ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? ) -> Bool { - return true + true } // MARK: UISceneSession Lifecycle @@ -15,6 +15,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate { _ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions ) -> UISceneConfiguration { - return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) + UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) } } diff --git a/telltime/TTS/SpeakButton.swift b/telltime/TTS/SpeakButton.swift index c5156ce..8f26513 100644 --- a/telltime/TTS/SpeakButton.swift +++ b/telltime/TTS/SpeakButton.swift @@ -30,7 +30,7 @@ struct SpeakButton: View { } private var widthProgressRatio: CGFloat { - return store.state.tts.isSpeaking ? CGFloat(store.state.tts.speakingProgress) : 1.0 + store.state.tts.isSpeaking ? CGFloat(store.state.tts.speakingProgress) : 1.0 } private func tellTime() {