Seeing this crash in beta 8 (Xcode beta 7).
Symbol not found: _$s7SwiftUI17EnvironmentValuesV33_navigationIndicatorVisibilityABIAA0G0OvpMV
Referenced from: <35BAAD44-14F4-3B6C-8568-3E8B57A526ED>
My call site:
var allMerchantsSection: some View {
Section {
ForEach(model.paginatedMerchants.items) { merchant in
NavigationLink(value: MerchantDestination.merchant(merchant)) {
CardCell(
image: .remote(url: merchant.info.bannerUrl),
text: merchant.info.merchantName,
description: nil,
chipText: nil
)
.navigationLinkIndicatorVisibility(.hidden)
}
.listRowBackground(Color.backgroundPrimary)
.listRowSeparator(.hidden)
.onAppear {
if model.canLoadMore, merchant == model.paginatedMerchants.items.last {
model.paginatedMerchants.currentPage += 1
}
}
}
} header: {
Text("All Merchants")
}
}
made a feedback report: FB20108722