From 3f24dc491f04217c122b12668da27d02052ce786 Mon Sep 17 00:00:00 2001 From: Saeed Bashir Date: Thu, 15 Feb 2024 15:24:43 +0500 Subject: [PATCH] fix: remove accidently commented code --- Source/PaymentManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/PaymentManager.swift b/Source/PaymentManager.swift index 0acf26979..19986d883 100644 --- a/Source/PaymentManager.swift +++ b/Source/PaymentManager.swift @@ -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) }