From fbcd83709b4ecb8b4db861806b57e341782dba18 Mon Sep 17 00:00:00 2001 From: Retr0-01 Date: Tue, 23 Sep 2025 12:18:24 +0300 Subject: [PATCH] fix storage node status --- .gitignore | 4 ++++ src/pages/home/page.tsx | 6 +++--- src/pages/home/types.ts | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 0675b30..c128b51 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,7 @@ dist-ssr .env* !.env.example docker-compose.*.yml + +data/ +meta/ +garage.toml diff --git a/src/pages/home/page.tsx b/src/pages/home/page.tsx index e1d04d2..d4206f2 100644 --- a/src/pages/home/page.tsx +++ b/src/pages/home/page.tsx @@ -38,8 +38,8 @@ const HomePage = () => { health?.status === "healthy" ? "text-success" : health?.status === "degraded" - ? "text-warning" - : "text-error" + ? "text-warning" + : "text-error" )} /> @@ -56,7 +56,7 @@ const HomePage = () => {