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:
+15
-1
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user