Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasemil authored Sep 27, 2023
2 parents ee9af42 + 6727cd8 commit b70a866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Example/Shared/AppsListView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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: "<YOUR ISSUER ID>", privateKeyID: "<YOUR PRIVATE KEY ID>", privateKey: "<YOUR PRIVATE KEY>")
private let configuration = try! APIConfiguration(issuerID: "<YOUR ISSUER ID>", privateKeyID: "<YOUR PRIVATE KEY ID>", privateKey: "<YOUR PRIVATE KEY>")
private lazy var provider: APIProvider = APIProvider(configuration: configuration)

func loadApps() {
Expand Down

0 comments on commit b70a866

Please sign in to comment.