From 7fa98b911ee0e3106145fd40fa3ccb5463e21618 Mon Sep 17 00:00:00 2001 From: James Linnell Date: Sun, 17 Apr 2022 09:06:51 -0700 Subject: [PATCH] Remove Join button MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is required for publication to the Apple App Store: > - Your app's “Join” section includes a call-to-action and/or URL that directs users to external mechanisms for purchases or subscriptions to be used in the app. --- Wasserflug-tvOS/Views/ContentView.swift | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Wasserflug-tvOS/Views/ContentView.swift b/Wasserflug-tvOS/Views/ContentView.swift index c206156..64b3871 100644 --- a/Wasserflug-tvOS/Views/ContentView.swift +++ b/Wasserflug-tvOS/Views/ContentView.swift @@ -16,7 +16,6 @@ struct ContentView: View { @State var isLoggingIn = false @State var hasInitiallyLoaded = false - @State var showJoinAlert = false enum Notifications { static let loggedOut = Notification.Name("com.jamesnl.Wasserflug-tvOSApp.loggedOut") @@ -86,12 +85,6 @@ struct ContentView: View { } .background(.ultraThinMaterial) }) - Button("Join", action: { - showJoinAlert = true - }) - .alert("Join Floatplane", isPresented: $showJoinAlert, actions: { }, message: { - Text("In order to create an account on Floatplane, please visit https://www.floatplane.com/signup. After this has been completed, you may return here and login.") - }) } } } else {