diff --git a/src/GitHub.App/ViewModels/Dialog/Clone/RepositoryCloneViewModel.cs b/src/GitHub.App/ViewModels/Dialog/Clone/RepositoryCloneViewModel.cs index ff30629bfa..5515048512 100644 --- a/src/GitHub.App/ViewModels/Dialog/Clone/RepositoryCloneViewModel.cs +++ b/src/GitHub.App/ViewModels/Dialog/Clone/RepositoryCloneViewModel.cs @@ -68,7 +68,7 @@ public RepositoryCloneViewModel( var canClone = Observable.CombineLatest( repository, this.WhenAnyValue(x => x.Path), (repo, path) => repo != null && !service.DestinationFileExists(path) && - (!service.DestinationDirectoryExists(path)) || service.DestinationDirectoryEmpty(path)); + (!service.DestinationDirectoryExists(path) || service.DestinationDirectoryEmpty(path))); var canOpen = Observable.CombineLatest( repository, this.WhenAnyValue(x => x.Path),