Skip to content

Commit 4ba9267

Browse files
d-csclaude
andcommitted
style(run-ops): apply oxfmt
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent fa32df2 commit 4ba9267

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

apps/webapp/app/routes/orgs.$organizationSlug.projects.$projectParam.runs.$runParam.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ export const loader = async ({ request, params }: LoaderFunctionArgs) => {
4646
throw new Response("Not Found", { status: 404 });
4747
}
4848

49-
if (environment.project.slug !== projectParam || environment.organization.slug !== organizationSlug) {
49+
if (
50+
environment.project.slug !== projectParam ||
51+
environment.organization.slug !== organizationSlug
52+
) {
5053
throw new Response("Not Found", { status: 404 });
5154
}
5255

apps/webapp/test/api.v1.waitpoints.tokens.complete.crossSeamGuard.test.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,7 @@ vi.setConfig({ testTimeout: 60_000 });
1717

1818
type CrossSeamGuard = ConstructorParameters<typeof RunEngine>[0]["crossSeamGuard"];
1919

20-
function buildEngine(opts: {
21-
prisma: any;
22-
redisOptions: any;
23-
crossSeamGuard?: CrossSeamGuard;
24-
}) {
20+
function buildEngine(opts: { prisma: any; redisOptions: any; crossSeamGuard?: CrossSeamGuard }) {
2521
return new RunEngine({
2622
prisma: opts.prisma,
2723
...(opts.crossSeamGuard ? { crossSeamGuard: opts.crossSeamGuard } : {}),

0 commit comments

Comments
 (0)