Skip to content

Commit 76e25b2

Browse files
committed
Apply oxfmt formatting
1 parent e8500cd commit 76e25b2

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/cloud/src/mcp/session-durable-object.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,7 @@ export class McpSessionDO extends McpSessionDOBase<CloudSessionDbHandle> {
207207
// outer `makeSessionServices`. When `AUTUMN_SECRET_KEY` is unset the
208208
// billing service degrades to a no-op tracker, so this stays inert in
209209
// cloud dev/preview environments that run without a billing backend.
210-
Effect.provide(
211-
CloudMeteredExecutionStackLayer.pipe(Layer.provide(AutumnService.Default)),
212-
),
210+
Effect.provide(CloudMeteredExecutionStackLayer.pipe(Layer.provide(AutumnService.Default))),
213211
Effect.withSpan("McpSessionDO.makeExecutionStack"),
214212
);
215213
// Build the description here so `executor.connections.list()` stays under

e2e/src/surfaces/autumn.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ export const makeAutumnSurface = (autumnUrl: string): AutumnSurface => {
6161
}>;
6262
};
6363
return (body.list ?? [])
64-
.filter((event) => event.customer_id === query.customerId && event.feature_id === query.featureId)
64+
.filter(
65+
(event) => event.customer_id === query.customerId && event.feature_id === query.featureId,
66+
)
6567
.map((event) => ({
6668
customerId: event.customer_id,
6769
featureId: event.feature_id,

0 commit comments

Comments
 (0)