Fix Live Activity streak messaging and mislabeled widget text

Show "Start your streak!" instead of "Don't break your streak!" when
streak count is zero, and fix small widget incorrectly labeling total
entries as "day streak".

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Trey t
2026-01-15 23:03:09 -06:00
parent 00cbd476d4
commit 74dc289a3d
3 changed files with 5 additions and 5 deletions

View File

@@ -340,7 +340,7 @@ private struct ExportVotedStatsView: View {
.font(.caption.weight(.semibold))
.foregroundStyle(.secondary)
Text("\(totalEntries) day streak")
Text("\(totalEntries) entries")
.font(.caption2)
.foregroundStyle(.tertiary)
}
@@ -762,7 +762,7 @@ private struct ExportLiveActivityView: View {
}
} else {
VStack(alignment: .leading) {
Text("Don't break your streak!")
Text(streak > 0 ? "Don't break your streak!" : "Start your streak!")
.font(.headline)
Text("Tap to log your mood")
.font(.caption)