diff --git a/nirvana-ios/Views/InnerCircle/InnerCircleView.swift b/nirvana-ios/Views/InnerCircle/InnerCircleView.swift index 6b91d0d..a8d8939 100644 --- a/nirvana-ios/Views/InnerCircle/InnerCircleView.swift +++ b/nirvana-ios/Views/InnerCircle/InnerCircleView.swift @@ -105,31 +105,6 @@ struct InnerCircleView: View { ConvoFooterView() .environmentObject(self.convoViewModel) - - // helper for new users - // TODO: make it back to 1 instead of 10...testing - if self.authSessionStore.friendsArr.count == 1 && self.selectedFriendIndex == nil { // don't show if bottom metadata showing - ZStack(alignment: .bottomTrailing) { - Color.clear - - Button { - self.alertActive.toggle() - self.alertText = "πŸ‘†πŸΌIt's simple!" - self.alertSubtext = "Press and hold on a friend to send a message. \n Tap on them to listen!" - } label: { - Label("help!πŸ™‰", systemImage: "questionmark.circle") - .font(.caption) - .foregroundColor(NirvanaColor.teal) - .padding(10) - .background(.ultraThinMaterial) - .shadow(radius: 10) - .labelStyle(.titleOnly) - .clipShape(Capsule()) - } - .padding() - } - .transition(.slide) - } } .alert(self.alertText, isPresented: self.$alertActive) {