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 = () => {