Skip to content

Commit 893b9e8

Browse files
committed
chore(dashboard-agent): oxfmt
1 parent e8d35fa commit 893b9e8

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

internal-packages/dashboard-agent/src/dashboard-agent.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2456,7 +2456,12 @@ describe("the view-model tools don't echo the view back to the model", () => {
24562456
return buildDashboardAgentTools({
24572457
...SCOPE,
24582458
investigations: {
2459-
upsert: async () => ({ ok: true as const, id: `inv_${++next}`, revision: 0, created: true }),
2459+
upsert: async () => ({
2460+
ok: true as const,
2461+
id: `inv_${++next}`,
2462+
revision: 0,
2463+
created: true,
2464+
}),
24602465
},
24612466
});
24622467
}

internal-packages/dashboard-agent/src/repo-tools.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,12 @@ export function buildRepoTools(
277277
};
278278
}
279279
const { content, truncated } = capRead(whole);
280-
return { path, content, truncated, ...(truncated ? { notice: READ_TRUNCATION_NOTICE } : {}) };
280+
return {
281+
path,
282+
content,
283+
truncated,
284+
...(truncated ? { notice: READ_TRUNCATION_NOTICE } : {}),
285+
};
281286
},
282287
}),
283288

0 commit comments

Comments
 (0)