Skip to content

Commit 45ecd2a

Browse files
committed
biome 2
1 parent 9a173fa commit 45ecd2a

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/main/services/git.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -151,12 +151,9 @@ export const detectSSHError = (output: string): string | undefined => {
151151
export function registerGitIpc(
152152
getMainWindow: () => BrowserWindow | null,
153153
): void {
154-
ipcMain.handle(
155-
"find-repos-directory",
156-
async (): Promise<string | null> => {
157-
return findReposDirectory();
158-
},
159-
);
154+
ipcMain.handle("find-repos-directory", async (): Promise<string | null> => {
155+
return findReposDirectory();
156+
});
160157

161158
ipcMain.handle(
162159
"validate-repo",

0 commit comments

Comments
 (0)