Skip to content

Commit ff80152

Browse files
authored
chore: format (#97)
1 parent b74b2be commit ff80152

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

packages/blink/src/react/use-dev-mode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export default function useDevMode(options: UseDevModeOptions): UseDevMode {
174174
const allEnv = {
175175
...process.env,
176176
...dotenv,
177-
}
177+
};
178178
if (blinkToken) {
179179
allEnv.BLINK_TOKEN = blinkToken;
180180
}

packages/scout-agent/lib/compute/daytona/index.test.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
import { describe, expect, mock, test } from "bun:test";
22
import { WebSocketServer } from "ws";
33
import type { DaytonaClient, DaytonaSandbox } from "./index";
4-
import {
5-
getDaytonaWorkspaceClient,
6-
initializeDaytonaWorkspace,
7-
} from "./index";
4+
import { getDaytonaWorkspaceClient, initializeDaytonaWorkspace } from "./index";
85

96
const noopLogger = {
107
info: () => {},
@@ -35,7 +32,8 @@ const createMockWebSocketServer = () => {
3532
let receivedHeaders: Record<string, string> = {};
3633
const wss = new WebSocketServer({ port: 0 });
3734
const address = wss.address();
38-
const port = typeof address === "object" && address !== null ? address.port : 0;
35+
const port =
36+
typeof address === "object" && address !== null ? address.port : 0;
3937
const url = `ws://localhost:${port}`;
4038

4139
wss.on("connection", (_ws, req) => {

0 commit comments

Comments
 (0)