Skip to content

Commit 72404e1

Browse files
committed
style: fix tailwind class order
1 parent 3f8ec99 commit 72404e1

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

src/browser/components/ChatInput/CreationControls.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export function CreationControls(props: CreationControlsProps) {
7979

8080
{/* Fetch latest option */}
8181
<div className="flex items-center gap-1" data-component="FetchLatestGroup">
82-
<label className="flex items-center gap-1 text-xs text-muted" htmlFor="fetch-latest">
82+
<label className="text-muted flex items-center gap-1 text-xs" htmlFor="fetch-latest">
8383
<input
8484
id="fetch-latest"
8585
type="checkbox"

src/browser/contexts/WorkspaceContext.test.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,13 @@ describe("WorkspaceContext", () => {
163163
result = await ctx().createWorkspace("/gamma", "feature", "main");
164164
});
165165

166-
expect(workspaceApi.create).toHaveBeenCalledWith("/gamma", "feature", "main", undefined, undefined);
166+
expect(workspaceApi.create).toHaveBeenCalledWith(
167+
"/gamma",
168+
"feature",
169+
"main",
170+
undefined,
171+
undefined
172+
);
167173
expect(projectsApi.list).toHaveBeenCalled();
168174
expect(result!.workspaceId).toBe("ws-new");
169175
expect(result!.projectPath).toBe("/gamma");

src/node/runtime/LocalRuntime.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,9 @@ export class LocalRuntime implements Runtime {
362362
let baseRef = trunkBranch;
363363
if (fetchLatest) {
364364
try {
365-
using proc = execAsync(`git -C "${projectPath}" rev-parse --verify "origin/${trunkBranch}"`);
365+
using proc = execAsync(
366+
`git -C "${projectPath}" rev-parse --verify "origin/${trunkBranch}"`
367+
);
366368
await proc.result;
367369
baseRef = `origin/${trunkBranch}`;
368370
} catch {

src/node/runtime/SSHRuntime.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -560,9 +560,7 @@ export class SSHRuntime implements Runtime {
560560
if (fetchLatest) {
561561
initLogger.logStep("Fetching latest from origin...");
562562
try {
563-
using proc = execAsync(
564-
`cd ${shescape.quote(projectPath)} && git fetch origin --prune`
565-
);
563+
using proc = execAsync(`cd ${shescape.quote(projectPath)} && git fetch origin --prune`);
566564
await proc.result;
567565
initLogger.logStep("Origin fetch complete");
568566

tests/ipcMain/createWorkspace.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,6 @@ describeIntegration("WORKSPACE_CREATE with both runtimes", () => {
485485
},
486486
TEST_TIMEOUT_MS
487487
);
488-
489488
});
490489

491490
describe("Init hook execution", () => {

0 commit comments

Comments
 (0)