From f188aa20d74e816cffe97acc2e2afd755ca45002 Mon Sep 17 00:00:00 2001 From: Matt Beaudoin Date: Sat, 17 Jan 2026 21:40:04 -0800 Subject: [PATCH] remove index usage --- README.md | 2 ++ src/routes/Authenticated/Apps/Apps.tsx | 6 +++--- src/routes/Authenticated/Dashboard/Dashboard.tsx | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a95d5d8..f99cd06 100644 --- a/README.md +++ b/README.md @@ -2,5 +2,7 @@ This is the frontend of a web wrapper for Coop Clouds abra CLI, letting users set up and manage VPSs and docker images through a web UI. +## Still a work in progess! + ## This is built with react, typescript, scss, and vite diff --git a/src/routes/Authenticated/Apps/Apps.tsx b/src/routes/Authenticated/Apps/Apps.tsx index fafe941..f0aadb0 100644 --- a/src/routes/Authenticated/Apps/Apps.tsx +++ b/src/routes/Authenticated/Apps/Apps.tsx @@ -200,9 +200,9 @@ export const Apps: React.FC = () => { ) : ( - filteredApps.map((app, index) => ( + filteredApps.map((app) => ( navigate(`/apps/${app.server}/${app.appName}`)} style={{ cursor: 'pointer' }} > @@ -234,7 +234,7 @@ export const Apps: React.FC = () => {
{app.version} {app.chaos === 'true' && ( - ☠️ + )} {app.upgrade !== 'latest' && ( diff --git a/src/routes/Authenticated/Dashboard/Dashboard.tsx b/src/routes/Authenticated/Dashboard/Dashboard.tsx index 67cd754..96b3317 100644 --- a/src/routes/Authenticated/Dashboard/Dashboard.tsx +++ b/src/routes/Authenticated/Dashboard/Dashboard.tsx @@ -90,7 +90,7 @@ export const Dashboard: React.FC = () => {
-