From 42d78817f467b1129439f139bcdab4b8b42c59d3 Mon Sep 17 00:00:00 2001 From: Junyan Qin Date: Sat, 25 Apr 2026 21:46:11 +0800 Subject: [PATCH] refactor(web): remove per-page icon from PluginPageItem Co-Authored-By: Claude Opus 4.6 (1M context) --- web/src/app/home/components/home-sidebar/SidebarDataContext.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/src/app/home/components/home-sidebar/SidebarDataContext.tsx b/web/src/app/home/components/home-sidebar/SidebarDataContext.tsx index 3f734635..e8c359b3 100644 --- a/web/src/app/home/components/home-sidebar/SidebarDataContext.tsx +++ b/web/src/app/home/components/home-sidebar/SidebarDataContext.tsx @@ -41,7 +41,6 @@ export interface PluginPageItem { pluginIconURL: string; // plugin icon URL pageId: string; path: string; // asset path (HTML file) - icon?: string; // optional per-page icon name from page manifest } // Entity lists and refresh functions exposed via context @@ -209,7 +208,6 @@ export function SidebarDataProvider({ pluginIconURL: httpClient.getPluginIconURL(author, name), pageId: page.id, path: page.path, - icon: page.icon, }); } }