From fa92bfbdd894b8b5cd70def92453cad72f7953e4 Mon Sep 17 00:00:00 2001 From: sarjent <35471573+sarjent@users.noreply.github.com> Date: Fri, 20 Mar 2026 14:03:24 -0500 Subject: [PATCH] fix(store): correct plugin store API endpoint path (#278) Co-authored-by: sarjent --- web_interface/static/v3/js/plugins/api_client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_interface/static/v3/js/plugins/api_client.js b/web_interface/static/v3/js/plugins/api_client.js index 921c40ee..f442dcd8 100644 --- a/web_interface/static/v3/js/plugins/api_client.js +++ b/web_interface/static/v3/js/plugins/api_client.js @@ -329,7 +329,7 @@ const PluginAPI = { * @returns {Promise} List of available plugins */ async getPluginStore() { - const response = await this.request('/plugins/store'); + const response = await this.request('/plugins/store/list'); return response.data || []; },