diff --git a/Sources/FlareUI/Classes/Presentation/Views/PaywallView/PaywallView.swift b/Sources/FlareUI/Classes/Presentation/Views/PaywallView/PaywallView.swift index 0f9ec6dde..120f5ddb4 100644 --- a/Sources/FlareUI/Classes/Presentation/Views/PaywallView/PaywallView.swift +++ b/Sources/FlareUI/Classes/Presentation/Views/PaywallView/PaywallView.swift @@ -27,8 +27,10 @@ struct PaywallView: View { var body: some View { switch paywallType { case let .subscriptions(productIDs): + let productIDs: any Collection = productIDs presentationAssembly.subscritpionsViewAssembly.assemble(ids: productIDs) case let .products(productIDs): + let productIDs: any Collection = productIDs presentationAssembly.productsViewAssembly.assemble(ids: productIDs) } }