Skip to content

Commit fe869d7

Browse files
committed
Update generate-summaries.ts
1 parent 31ce095 commit fe869d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/mcp-server/scripts/generate-summaries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ async function load_existing_summaries(output_path: string): Promise<SummaryData
9595
}
9696

9797
try {
98-
const content = await readFile(output_path, 'utf-8');
98+
const content = (await readFile(output_path, 'utf-8')) as string;
9999
const data = JSON.parse(content);
100100
const validated = v.safeParse(summary_data_schema, data);
101101

0 commit comments

Comments
 (0)