Skip to content

Commit

Permalink
Update clone string
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamparter committed Dec 25, 2024
1 parent dea7258 commit 94397d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FluentHub.App/UserControls/GitCloneFlyout.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ private void OnGitCloneFlyoutLoaded(object sender, RoutedEventArgs e)
_gitUrl = $"gh repo clone {ViewModel.Repository.Owner.Login}/{ViewModel.Repository.Name}";

CloneUriTextBox.Text = _cloneUrl;
CloneDescriptionTextBlock.Text = "Use Git or checkout with SVN using the web URL.";
CloneDescriptionTextBlock.Text = "Clone using the web URL.";

_repoGitUrl = _cloneUrl;

Expand All @@ -60,7 +60,7 @@ private void GitCloneFlyoutNavView_ItemInvoked(NavigationView sender, Navigation
{
case "Https":
CloneUriTextBox.Text = _cloneUrl;
CloneDescriptionTextBlock.Text = "Use Git or checkout with SVN using the web URL.";
CloneDescriptionTextBlock.Text = "Clone using the web URL.";
break;
case "Ssh":
CloneUriTextBox.Text = _sshUrl;
Expand Down

0 comments on commit 94397d6

Please sign in to comment.