new macOS version

This commit is contained in:
2026-04-01 16:10:30 -05:00
parent 56673078f5
commit 483e3c1d00
13 changed files with 2302 additions and 319 deletions

View File

@@ -83,7 +83,7 @@ struct FocusSessionView: View {
}
// Latest nudge
if let nudge = session.lastNudge {
if let nudge = session.nudgeMessage {
NudgeCard(message: nudge)
}
@@ -401,7 +401,7 @@ private struct ProactiveCardView: View {
return description ?? "I noticed something that might be slowing you down."
case .appSwitchLoop(let apps, let count):
return "You've switched between \(apps.joined(separator: "")) \(count)× in a row — are you stuck?"
case .sessionAction(_, _, let checkpoint, let reason, _):
case .sessionAction(_, _, let checkpoint, let reason, _, _):
return checkpoint.isEmpty ? reason : "Left off: \(checkpoint)"
}
}