diff --git a/admin-dashboard.html b/admin-dashboard.html index e150a45..6865fb3 100644 --- a/admin-dashboard.html +++ b/admin-dashboard.html @@ -1498,11 +1498,9 @@ async function loadDynamicApps() { return; } - // Filter out hardcoded apps and map to HTML - const dynamicApps = apps - .filter(app => !app.id || !app.id.startsWith('hardcoded-')) - .map(app => ` -
+ // Map all apps to HTML, including hardcoded ones + const dynamicApps = apps.map(app => ` +
${app.icon ? `${app.name}` :