diff --git a/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Commands/MainListPage.cs b/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Commands/MainListPage.cs index b13a72d276..003a0bfb9e 100644 --- a/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Commands/MainListPage.cs +++ b/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Commands/MainListPage.cs @@ -161,7 +161,7 @@ public partial class MainListPage : DynamicListPage, { return _tlcManager .TopLevelCommands - .Where(tlc => !string.IsNullOrEmpty(tlc.Title)) + .Where(tlc => !tlc.IsFallback && !string.IsNullOrEmpty(tlc.Title)) .ToArray(); } }