chore(format): oxfmt memory

This commit is contained in:
Peter Steinberger
2026-01-18 07:30:04 +00:00
parent 30338ce1a7
commit ca350fc66c
8 changed files with 32 additions and 28 deletions

View File

@@ -73,7 +73,11 @@ export async function buildSessionEntry(absPath: string): Promise<SessionFileEnt
} catch {
continue;
}
if (!record || typeof record !== "object" || (record as { type?: unknown }).type !== "message") {
if (
!record ||
typeof record !== "object" ||
(record as { type?: unknown }).type !== "message"
) {
continue;
}
const message = (record as { message?: unknown }).message as
@@ -100,4 +104,3 @@ export async function buildSessionEntry(absPath: string): Promise<SessionFileEnt
return null;
}
}