diff --git a/app/src/lib/git/stash.ts b/app/src/lib/git/stash.ts index 025daa27fc1..54610314797 100644 --- a/app/src/lib/git/stash.ts +++ b/app/src/lib/git/stash.ts @@ -114,8 +114,8 @@ export async function createDesktopStashEntry( branchName: string, untrackedFilesToStage: ReadonlyArray ): Promise { - // // We must ensure that no untracked files are present before stashing - // // See https://github.com/desktop/desktop/pull/8085 + // We must ensure that no untracked files are present before stashing + // See https://github.com/desktop/desktop/pull/8085 if (untrackedFilesToStage.length) { await git( ['add', ...untrackedFilesToStage],