Skip to content

Commit cfeb274

Browse files
Merge pull request #413 from pollen-robotics/412-fix-dashboard-app-list
Fix route for app dashboard list.
2 parents 03fedbe + 89b0aed commit cfeb274

File tree

1 file changed

+1
-1
lines changed
  • src/reachy_mini/daemon/app/dashboard/static/js

1 file changed

+1
-1
lines changed

src/reachy_mini/daemon/app/dashboard/static/js/appstore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const hfAppsStore = {
55
await hfAppsStore.displayAvailableApps(appsData);
66
},
77
fetchAvailableApps: async () => {
8-
const resAvailable = await fetch('/api/apps/list-available');
8+
const resAvailable = await fetch('/api/apps/list-available/dashboard_selection');
99
const appsData = await resAvailable.json();
1010
return appsData;
1111
},

0 commit comments

Comments
 (0)