fix: update banner label to '5 Hour Limit' and make banner tappable

This commit is contained in:
SuperDooper
2026-05-08 09:19:16 +02:00
parent 0025690a74
commit 9dee674ff0
+3 -1
View File
@@ -51,7 +51,7 @@ struct ContentView: View {
ForEach(vm.limits) { limit in ForEach(vm.limits) { limit in
VStack(spacing: 0) { VStack(spacing: 0) {
HStack { HStack {
Text(limit.window == .fiveHour ? "5hr Limit" : "7 Day Limit") Text(limit.window == .fiveHour ? "5 Hour Limit" : "7 Day Limit")
.font(.system(size: 11, weight: .semibold)) .font(.system(size: 11, weight: .semibold))
.foregroundColor(.secondary) .foregroundColor(.secondary)
.textCase(.uppercase) .textCase(.uppercase)
@@ -1051,6 +1051,7 @@ struct UpdateBanner: View {
.padding(.vertical, 10) .padding(.vertical, 10)
.background(Color.blue.opacity(0.08)) .background(Color.blue.opacity(0.08))
.overlay(Divider(), alignment: .bottom) .overlay(Divider(), alignment: .bottom)
.onTapGesture { showSheet = true }
} }
} }
@@ -1168,3 +1169,4 @@ struct UpdateSheet: View {
.frame(width: 380) .frame(width: 380)
} }
} }