From 6727cd8371f9159d3b86cc0de1f8e82412e780fb Mon Sep 17 00:00:00 2001 From: Antoine van der Lee <4329185+AvdLee@users.noreply.github.com> Date: Tue, 19 Sep 2023 20:28:32 +0200 Subject: [PATCH] Fix example project --- Example/Shared/AppsListView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Example/Shared/AppsListView.swift b/Example/Shared/AppsListView.swift index bcc56bd3..f10d94fc 100644 --- a/Example/Shared/AppsListView.swift +++ b/Example/Shared/AppsListView.swift @@ -53,7 +53,7 @@ final class AppsListViewModel: ObservableObject { /// Go to https://appstoreconnect.apple.com/access/api and create your own key. This is also the page to find the private key ID and the issuer ID. /// Download the private key and open it in a text editor. Remove the enters and copy the contents over to the private key parameter. - private let configuration = APIConfiguration(issuerID: "", privateKeyID: "", privateKey: "") + private let configuration = try! APIConfiguration(issuerID: "", privateKeyID: "", privateKey: "") private lazy var provider: APIProvider = APIProvider(configuration: configuration) func loadApps() {