Build 3 - Remove debug settings from dev

This commit is contained in:
2025-09-16 09:57:04 -06:00
parent f5dabd0ed0
commit 64e9d4dfe5
4 changed files with 2 additions and 152 deletions

View File

@@ -7,8 +7,6 @@ struct AnalyticsView: View {
NavigationView {
ScrollView {
LazyVStack(spacing: 20) {
HeaderSection()
OverallStatsSection()
ProgressChartSection()
@@ -26,22 +24,6 @@ struct AnalyticsView: View {
}
}
struct HeaderSection: View {
var body: some View {
HStack {
Image("MountainsIcon")
.resizable()
.frame(width: 32, height: 32)
Text("Analytics")
.font(.title)
.fontWeight(.bold)
Spacer()
}
}
}
struct OverallStatsSection: View {
@EnvironmentObject var dataManager: ClimbingDataManager