From 55445fb84d7be6b029571c0a0db70eef8a80dc68 Mon Sep 17 00:00:00 2001 From: Sam Symons Date: Tue, 23 Jan 2024 08:45:19 -0800 Subject: [PATCH] Only add VPN intents to alpha build (#2360) Task/Issue URL: https://app.asana.com/0/414235014887631/1206395221805116/f Tech Design URL: CC: @graeme Description: This PR removes app intents from non-alpha builds. --- DuckDuckGo/VPNIntents.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DuckDuckGo/VPNIntents.swift b/DuckDuckGo/VPNIntents.swift index 716396607f..d82a7c1b86 100644 --- a/DuckDuckGo/VPNIntents.swift +++ b/DuckDuckGo/VPNIntents.swift @@ -17,6 +17,8 @@ // limitations under the License. // +#if ALPHA + import AppIntents import NetworkExtension import WidgetKit @@ -100,3 +102,5 @@ struct EnableVPNIntent: AppIntent { } } + +#endif