Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/GitHub.App/Services/RepositoryCloneService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ public async Task CloneOrOpenRepository(
throw new InvalidOperationException("Can't clone or open a repository because a file exists at: " + repositoryPath);
}

// Make sure the Clone Repository UI is visible while cloning
teamExplorerServices.ShowHomePage();

var repositoryUrl = url.ToRepositoryUrl();
var isDotCom = HostAddress.IsGitHubDotComUri(repositoryUrl);
if (DestinationDirectoryExists(repositoryPath))
Expand Down Expand Up @@ -150,8 +153,6 @@ public async Task CloneOrOpenRepository(
await usageTracker.IncrementCounter(x => x.NumberOfEnterpriseClones);
}
}

teamExplorerServices.ShowHomePage();
}

/// <inheritdoc/>
Expand Down