Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
TCA iOS v4.2 (#550)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippzagar committed Aug 29, 2023
1 parent 36b1027 commit 8377172
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
15 changes: 8 additions & 7 deletions Campus-iOS/App.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,18 @@ import Firebase
@MainActor
struct CampusApp: App {
@StateObject var model: Model = Model()
let persistenceController = PersistenceController.shared
@State private var selectedTab: Tab = .home
@State var isLoginSheetPresented = false

let persistenceController = PersistenceController.shared

enum Tab {
case home
case grades
case lectures
case calendar
case maps
}
case home
case grades
case lectures
case calendar
case maps
}

init() {
#if !DEBUG
Expand Down
2 changes: 1 addition & 1 deletion Campus-iOS/ProfileComponent/View/ProfileView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ struct ProfileView: View {
}) {
HStack {
Spacer()
Text("Version 4.1").foregroundColor(colorScheme == .dark ? .init(UIColor.lightGray) : .init(UIColor.darkGray))
Text("Version 4.2").foregroundColor(colorScheme == .dark ? .init(UIColor.lightGray) : .init(UIColor.darkGray))
Spacer()
}
}
Expand Down

0 comments on commit 8377172

Please sign in to comment.