Live telemetry

This commit is contained in:
2026-03-07 23:53:16 -05:00
parent 95a4f755cb
commit b1b601304a
15 changed files with 918 additions and 32 deletions

View File

@@ -414,7 +414,7 @@ func (m RaceDetailModel) renderSessionPills() string {
if len(sess.DateStart) >= 10 {
t, err := time.Parse(time.RFC3339, sess.DateStart)
if err == nil {
dateStr = t.Format("Mon 2")
dateStr = t.Local().Format("Mon 2")
} else {
dateStr = sess.DateStart[:10]
}