Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,6 @@ struct SpaceHubView: View {
VStack(spacing: FeatureFlags.vaultBackToRoots ? 8 : 0) {
HomeUpdateSubmoduleView().padding(8)

if FeatureFlags.anyAppBetaTip {
HomeAnyAppWidgetTipView()
.padding(.horizontal, 8)
}

ForEach(model.filteredSpaces) {
spaceCard($0)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,6 @@ public extension FeatureFlags {
value(for: .dndOnCollectionsAndSets)
}

static var anyAppBetaTip: Bool {
value(for: .anyAppBetaTip)
}

static var multichats: Bool {
value(for: .multichats)
}
Expand Down Expand Up @@ -155,7 +151,6 @@ public extension FeatureFlags {
.setKanbanView,
.fullInlineSetImpl,
.dndOnCollectionsAndSets,
.anyAppBetaTip,
.multichats,
.doNotWaitCompletionInAnytypePreview,
.rainbowViews,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,19 +98,10 @@ public extension FeatureDescription {
defaultValue: false
)

static let anyAppBetaTip = FeatureDescription(
title: "Show any app beta alert",
type: .feature(author: "[email protected]", releaseVersion: "demo"),
releaseAnytypeValue: false,
releaseAnyAppValue: true,
debugValue: false
)

static let multichats = FeatureDescription(
title: "Multichats",
type: .feature(author: "[email protected]", releaseVersion: "?"),
releaseAnytypeValue: false,
releaseAnyAppValue: false,
defaultValue: false,
debugValue: true
)

Expand Down