diff --git a/Uplift.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Uplift.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 802763d..1d52f8b 100644 --- a/Uplift.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Uplift.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -6,8 +6,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/google/abseil-cpp-binary.git", "state" : { - "revision" : "7ce7be095bc3ed3c98b009532fe2d7698c132614", - "version" : "1.2024011601.0" + "revision" : "194a6706acbd25e4ef639bcaddea16e8758a3e27", + "version" : "1.2024011602.0" } }, { @@ -15,8 +15,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apollographql/apollo-ios.git", "state" : { - "revision" : "eedde2151859011a44bb7cb05388deb2bf532644", - "version" : "1.9.3" + "revision" : "51e535dcf5439c01396d668a9598748ea86c7c1a", + "version" : "1.20.0" } }, { @@ -24,8 +24,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/google/app-check.git", "state" : { - "revision" : "c218c2054299b15ae577e818bbba16084d3eabe6", - "version" : "10.18.2" + "revision" : "3b62f154d00019ae29a71e9738800bb6f18b236d", + "version" : "10.19.2" } }, { @@ -42,8 +42,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/firebase/firebase-ios-sdk", "state" : { - "revision" : "888f0b6026e2441a69e3ee2ad5293c7a92031e62", - "version" : "10.23.1" + "revision" : "eca84fd638116dd6adb633b5a3f31cc7befcbb7d", + "version" : "10.29.0" } }, { @@ -51,8 +51,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/google/GoogleAppMeasurement.git", "state" : { - "revision" : "c7a5917ebe48d69f421aadf154ef3969c8b7f12d", - "version" : "10.23.1" + "revision" : "fe727587518729046fc1465625b9afd80b5ab361", + "version" : "10.28.0" } }, { @@ -78,8 +78,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/google/GoogleUtilities.git", "state" : { - "revision" : "26c898aed8bed13b8a63057ee26500abbbcb8d55", - "version" : "7.13.1" + "revision" : "57a1d307f42df690fdef2637f3e5b776da02aad6", + "version" : "7.13.3" } }, { @@ -87,8 +87,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/google/grpc-binary.git", "state" : { - "revision" : "67043f6389d0e28b38fa02d1c6952afeb04d807f", - "version" : "1.62.1" + "revision" : "e9fad491d0673bdda7063a0341fb6b47a30c5359", + "version" : "1.62.2" } }, { @@ -123,8 +123,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/onevcat/Kingfisher", "state" : { - "revision" : "5b92f029fab2cce44386d28588098b5be0824ef5", - "version" : "7.11.0" + "revision" : "2ef543ee21d63734e1c004ad6c870255e8716c50", + "version" : "7.12.0" } }, { @@ -132,8 +132,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/firebase/leveldb.git", "state" : { - "revision" : "43aaef65e0c665daadf848761d560e446d350d3d", - "version" : "1.22.4" + "revision" : "a0bc79961d7be727d258d33d5a6b2f1023270ba1", + "version" : "1.22.5" } }, { @@ -159,8 +159,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/stephencelis/SQLite.swift.git", "state" : { - "revision" : "e78ae0220e17525a15ac68c697a155eb7a672a8e", - "version" : "0.15.0" + "revision" : "a95fc6df17d108bd99210db5e8a9bac90fe984b8", + "version" : "0.15.3" } }, { @@ -168,8 +168,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-protobuf.git", "state" : { - "revision" : "9f0c76544701845ad98716f3f6a774a892152bcb", - "version" : "1.26.0" + "revision" : "d72aed98f8253ec1aa9ea1141e28150f408cf17f", + "version" : "1.29.0" } }, { diff --git a/Uplift/Models/Equipment.swift b/Uplift/Models/Equipment.swift index edef419..188cf57 100644 --- a/Uplift/Models/Equipment.swift +++ b/Uplift/Models/Equipment.swift @@ -8,7 +8,7 @@ import Foundation import UpliftAPI -import SwiftUICore +import SwiftUI /// Model representing a facility's equipment. struct Equipment: Hashable { diff --git a/Uplift/Views/HomeView.swift b/Uplift/Views/HomeView.swift index bea4eed..2f9a9fa 100644 --- a/Uplift/Views/HomeView.swift +++ b/Uplift/Views/HomeView.swift @@ -91,7 +91,7 @@ struct HomeView: View { private var capacityReminder: some View { NavigationLink { CapacityRemindersView() - } label: { + } label: { HStack { Text("CAPACITY REMINDERS") .font(Constants.Fonts.bodyMedium) @@ -110,7 +110,7 @@ struct HomeView: View { .shadow(color: Color.black.opacity(0.1), radius: 4, x: 0, y: 2) ) } - .buttonStyle(ScaleButtonStyle()) + .buttonStyle(ScaleButtonStyle()) } private func capacityCircle(facility: Facility?) -> some View {