fix: update GitHub link in MccBannerPanelBuilder

- Changed the GitHub link in the MccBannerPanelBuilder to use the full URL format for better accessibility.
This commit is contained in:
BruceChen 2026-04-06 20:34:38 +08:00
parent e81700bf0e
commit f432637710

View file

@ -69,7 +69,7 @@ namespace MinecraftClient.Tui
private static void AddGithub(StackPanel panel)
{
var row = new TextBlock();
row.Inlines!.Add(Val("Github.com/MCCTeam", Pal.Gray));
row.Inlines!.Add(Val("https://github.com/MCCTeam", Pal.Gray));
panel.Children.Add(row);
}