Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Ned Halksworth
2026-05-27 18:19:44 +01:00
committed by GitHub
parent c22945cd4e
commit 94a10ecec4
+15 -1
View File
@@ -123,7 +123,21 @@ import {
wholeNumber,
} from "./lib/metrics";
import { exportPayload, parseImport } from "./lib/storage";
import type { CoachChat, CoachMessage, DateFilter, EntryDraft, Filters, Flavour, ImportPreview, RedBullEntry } from "./types";
import type { DateFilter, EntryDraft, Filters, Flavour, ImportPreview, RedBullEntry } from "./types";
type CoachMessage = {
role: "user" | "assistant" | "system";
content: string;
thinking?: string;
};
type CoachChat = {
id: string;
title: string;
createdAt: string;
updatedAt: string;
messages: CoachMessage[];
};
type AppView = "overview" | "logbook" | "trends" | "settings";
type AuthMode = "login" | "signup";