We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a173fa commit 45ecd2aCopy full SHA for 45ecd2a
src/main/services/git.ts
@@ -151,12 +151,9 @@ export const detectSSHError = (output: string): string | undefined => {
151
export function registerGitIpc(
152
getMainWindow: () => BrowserWindow | null,
153
): void {
154
- ipcMain.handle(
155
- "find-repos-directory",
156
- async (): Promise<string | null> => {
157
- return findReposDirectory();
158
- },
159
- );
+ ipcMain.handle("find-repos-directory", async (): Promise<string | null> => {
+ return findReposDirectory();
+ });
160
161
ipcMain.handle(
162
"validate-repo",
0 commit comments