From 66faa1a13f3a44ca787540f38c1f410f2af2afa6 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sat, 13 Jun 2026 21:22:52 +0200 Subject: [PATCH] refactor: replace schedule nav item with top picks --- internal/anime/command_palette.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/anime/command_palette.go b/internal/anime/command_palette.go index 280c967..8507503 100644 --- a/internal/anime/command_palette.go +++ b/internal/anime/command_palette.go @@ -78,7 +78,7 @@ func (h *AnimeHandler) commandPaletteNavigationItems(query string) []commandPale all := []commandPaletteItem{ {ID: "nav:home", Type: "navigation", Label: "Go to Home", Subtitle: "Navigation", Href: "/", Icon: "home"}, {ID: "nav:watchlist", Type: "navigation", Label: "Go to Watchlist", Subtitle: "Navigation", Href: "/watchlist", Icon: "bookmark"}, - {ID: "nav:schedule", Type: "navigation", Label: "Open Broadcast Guide", Subtitle: "External broadcast metadata", Href: "/schedule", Icon: "calendar"}, + {ID: "nav:top-picks", Type: "navigation", Label: "Open Top Picks", Subtitle: "Navigation", Href: "/top-picks", Icon: "sparkles"}, {ID: "nav:popular", Type: "navigation", Label: "Browse popular", Subtitle: "Browse", Href: "/browse?order_by=popularity&sort=asc", Icon: "trending"}, {ID: "nav:airing", Type: "navigation", Label: "Currently airing", Subtitle: "Browse", Href: "/browse?status=airing&order_by=popularity&sort=asc", Icon: "play"}, }