Close clearApiMonitor
The merge that brought main into this branch dropped the closing brace, so the function body ran straight into the interface declared below it and the frontend did not compile at all: tsc reports TS1005 at the end of the file and vite fails the build. Reproduced against the pushed head and clean with the brace restored.
This commit is contained in:
parent
082e0dd9d1
commit
bf8ef7fd8c
1 changed files with 2 additions and 0 deletions
|
|
@ -134,6 +134,8 @@ export async function clearApiMonitor(): Promise<void> {
|
|||
method: "DELETE",
|
||||
});
|
||||
await parseJsonOrThrow<{ cleared: boolean }>(response);
|
||||
}
|
||||
|
||||
export interface ActiveGenerationsResponse {
|
||||
count: number;
|
||||
/** Conversations with a generation in flight. Shorter than `count` when a
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue