From 527783817b7abdd9b8a35a8da848f8813db8b7ed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 29 Jun 2026 16:04:20 +0000 Subject: [PATCH] chore: format with prettier [skip ci] --- .../renderer/components/ImportProjectDialog.tsx | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/frontend/src/renderer/components/ImportProjectDialog.tsx b/frontend/src/renderer/components/ImportProjectDialog.tsx index 739bd2c6c..8f4ed2706 100644 --- a/frontend/src/renderer/components/ImportProjectDialog.tsx +++ b/frontend/src/renderer/components/ImportProjectDialog.tsx @@ -101,7 +101,11 @@ export function ImportProjectDialog({ children, onImport }: ImportProjectDialogP return ( <> - {children({ open: openDialog, disabled: isChoosing || isImporting, label: isChoosing ? "Opening..." : "New project" })} + {children({ + open: openDialog, + disabled: isChoosing || isImporting, + label: isChoosing ? "Opening..." : "New project", + })} (next ? setOpen(true) : close())}> @@ -256,7 +260,8 @@ function ImportFolderStep({ }) { const isWorkspace = mode === "workspace"; const failedCount = repos.filter((repo) => !repo.valid).length; - const canImportWorkspace = isWorkspace && selectedPath !== null && repos.length > 0 && failedCount === 0 && !isImporting; + const canImportWorkspace = + isWorkspace && selectedPath !== null && repos.length > 0 && failedCount === 0 && !isImporting; const canImportProject = !isWorkspace && selectedPath !== null && !isImporting; return ( @@ -284,7 +289,13 @@ function ImportFolderStep({
{selectedPath ? ( - + ) : (