fix(store): correct plugin store API endpoint path (#278)

Co-authored-by: sarjent <sarjent@users.noreply.github.com>
This commit is contained in:
sarjent
2026-03-20 14:03:24 -05:00
committed by GitHub
parent f3e7c639ba
commit fa92bfbdd8

View File

@@ -329,7 +329,7 @@ const PluginAPI = {
* @returns {Promise<Array>} List of available plugins * @returns {Promise<Array>} List of available plugins
*/ */
async getPluginStore() { async getPluginStore() {
const response = await this.request('/plugins/store'); const response = await this.request('/plugins/store/list');
return response.data || []; return response.data || [];
}, },