Skip to content

Commit ff6683a

Browse files
chore: apply code formatting
• Fix indentation in editor.ts return statement • Consistent formatting across codebase
1 parent 7d86240 commit ff6683a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli/commands/commit/editor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export function detectEditor(): string | null {
6161
if (envEditor.includes("/") || envEditor.includes("\\")) {
6262
try {
6363
accessSync(envEditor, constants.F_OK);
64-
return envEditor.trim();
64+
return envEditor.trim();
6565
} catch {
6666
// Path doesn't exist, try to find it as a command
6767
}

0 commit comments

Comments
 (0)