From bd1677ae0de0704a0dfffd3be584c38396fce563 Mon Sep 17 00:00:00 2001 From: Reihan Date: Fri, 9 May 2025 00:49:41 +0700 Subject: [PATCH] status fix --- src/app/dashboard/server/Box.tsx | 8 ++++---- src/app/dashboard/server/page.tsx | 28 ++++++++++++++-------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/app/dashboard/server/Box.tsx b/src/app/dashboard/server/Box.tsx index 158e387..92f7f50 100644 --- a/src/app/dashboard/server/Box.tsx +++ b/src/app/dashboard/server/Box.tsx @@ -91,7 +91,7 @@ export default function Box() {
{[ - { status: "operational", width: "10%", details: "No incident reported" }, + { status: "operational", width: "20%", details: "No incident reported" }, { status: "downtime", width: "0.5%", @@ -99,7 +99,7 @@ export default function Box() { }, { status: "operational", width: "28%", details: "No incident reported" }, { status: "degraded", width: "0.5%", details: "Updating SMTP" }, - { status: "operational", width: "61%", details: "No incident reported" }, + { status: "operational", width: "51%", details: "No incident reported" }, ].map((segment, index) => (
{[ - { status: "operational", width: "90%", details: "No incident reported" }, + { status: "operational", width: "80%", details: "No incident reported" }, { status: "degraded", width: "0.5%", details: "Resolved - Deprecated DB API", }, - { status: "operational", width: "9%", details: "No incident reported" }, + { status: "operational", width: "19%", details: "No incident reported" }, ].map((segment, index) => (
- -
- ); + return ( +
+ +
+ ); }