From d4eed89e9f530f373c989ef01807aa785156fb85 Mon Sep 17 00:00:00 2001 From: Davide Date: Fri, 6 Dec 2024 15:30:45 +0100 Subject: [PATCH] Allow "Routing" module in beta --- .../CommonLibrary/IAP/AppFeatureProviding+Levels.swift | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Library/Sources/CommonLibrary/IAP/AppFeatureProviding+Levels.swift b/Library/Sources/CommonLibrary/IAP/AppFeatureProviding+Levels.swift index 1cfccf86..8964a0b1 100644 --- a/Library/Sources/CommonLibrary/IAP/AppFeatureProviding+Levels.swift +++ b/Library/Sources/CommonLibrary/IAP/AppFeatureProviding+Levels.swift @@ -29,7 +29,11 @@ extension AppUserLevel: AppFeatureProviding { public var features: [AppFeature] { switch self { case .beta: - return [.interactiveLogin, .sharing] + return [ + .interactiveLogin, + .routing, + .sharing + ] case .fullV2: return AppFeature.fullV2Features