refactor(web): remove per-page icon from PluginPageItem

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Junyan Qin
2026-04-25 21:46:11 +08:00
parent 4b9f25a05d
commit 42d78817f4

View File

@@ -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,
});
}
}