diff --git a/AmplifyPlugins/Auth/Tests/AuthHostApp/AuthHostApp/AuthHostAppApp.swift b/AmplifyPlugins/Auth/Tests/AuthHostApp/AuthHostApp/AuthHostAppApp.swift index f8d668474d..4df1c03495 100644 --- a/AmplifyPlugins/Auth/Tests/AuthHostApp/AuthHostApp/AuthHostAppApp.swift +++ b/AmplifyPlugins/Auth/Tests/AuthHostApp/AuthHostApp/AuthHostAppApp.swift @@ -6,9 +6,18 @@ // import SwiftUI +import Amplify +import protocol Amplify.Model @main struct AuthHostAppApp: App { + + typealias AmplifyModel = Amplify.Model + + func doOneThing() async -> AmplifyModel { fatalError() } + + func doOtherThing() async -> Amplify.Model { fatalError() } + var body: some Scene { WindowGroup { ContentView()