Code cleanup

This commit is contained in:
Jack251970 2026-01-21 18:13:27 +08:00
parent bf44637400
commit 8e127d0339
2 changed files with 2 additions and 1 deletions

View file

@ -4,7 +4,6 @@ using System.Linq;
using System.Text.Json.Serialization;
using Flow.Launcher.Core.Plugin;
using Flow.Launcher.Plugin;
using Svg;
namespace Flow.Launcher.Storage
{

View file

@ -1333,7 +1333,9 @@ namespace Flow.Launcher.ViewModel
// Max history results to return for display
if (maxResult.HasValue)
{
historyItems = historyItems.Take(maxResult.Value);
}
foreach (var item in historyItems)
{