Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
fix: remove accidently commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
saeedbashir committed Feb 15, 2024
1 parent d713dd2 commit 3f24dc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/PaymentManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ enum PurchaseError: String {
}

func fetchPrroduct(_ identifier: String, completion: ((SKProduct?, PurchaseError?) -> Void)? = nil) {
SwiftyStoreKit.retrieveProductsInfo(["identifier"]) { result in
SwiftyStoreKit.retrieveProductsInfo([identifier]) { result in
if let product = result.retrievedProducts.first {
completion?(product, nil)
}
Expand Down

0 comments on commit 3f24dc4

Please sign in to comment.