chore: Fix type errors from reverts.

This commit is contained in:
cpojer
2026-02-17 11:22:31 +09:00
parent 262b7a157a
commit 4b8f53979e
9 changed files with 30 additions and 22 deletions

View File

@@ -261,7 +261,7 @@ const formatUsagePair = (input?: number | null, output?: number | null) => {
return `🧮 Tokens: ${inputLabel} in / ${outputLabel} out`;
};
const formatMediaUnderstandingLine = (decisions?: MediaUnderstandingDecision[]) => {
const formatMediaUnderstandingLine = (decisions?: ReadonlyArray<MediaUnderstandingDecision>) => {
if (!decisions || decisions.length === 0) {
return null;
}