Skip to content

Commit 899556e

Browse files
committed
fmt: apply prettier formatting
_Generated with `mux`_
1 parent 204d48c commit 899556e

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

src/App.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ function AppInner() {
6161
setSelectedWorkspace,
6262
});
6363

64-
6564
const handleToggleSidebar = useCallback(() => {
6665
setSidebarCollapsed((prev) => !prev);
6766
}, [setSidebarCollapsed]);
@@ -195,7 +194,6 @@ function AppInner() {
195194
[handleRemoveProject]
196195
);
197196

198-
199197
const handleGetSecrets = useCallback(async (projectPath: string) => {
200198
return await window.api.projects.secrets.get(projectPath);
201199
}, []);

src/hooks/useStartWorkspaceCreation.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,10 @@ interface UseStartWorkspaceCreationOptions {
8787
setSelectedWorkspace: (selection: WorkspaceSelection | null) => void;
8888
}
8989

90-
function resolveProjectPath(projects: Map<string, ProjectConfig>, requestedPath: string): string | null {
90+
function resolveProjectPath(
91+
projects: Map<string, ProjectConfig>,
92+
requestedPath: string
93+
): string | null {
9194
if (projects.has(requestedPath)) {
9295
return requestedPath;
9396
}

src/utils/chatCommands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ export async function handleNewCommand(
305305
// Open modal if no workspace name provided
306306
if (!parsed.workspaceName) {
307307
setInput("");
308-
308+
309309
// Get workspace info to extract projectPath for the modal
310310
const workspaceInfo = await window.api.workspace.getInfo(workspaceId);
311311
if (!workspaceInfo) {

0 commit comments

Comments
 (0)