From 7732ae6e25496a933642467d87d3d34c4009b344 Mon Sep 17 00:00:00 2001 From: Liam Date: Tue, 16 Apr 2024 23:01:07 +0100 Subject: [PATCH] fix? --- src/app/(pages)/mojang/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(pages)/mojang/page.tsx b/src/app/(pages)/mojang/page.tsx index abb4994..48ea045 100644 --- a/src/app/(pages)/mojang/page.tsx +++ b/src/app/(pages)/mojang/page.tsx @@ -49,7 +49,7 @@ export async function generateMetadata(): Promise { let description = "The current status of Mojang Services\n\n"; description += Object.entries(endpoints) .map(([url, status]) => { - const formattedStatus = formatStatus(status).padEnd(maxStatusLength, " "); // Pad the status to ensure uniform width + const formattedStatus = formatStatus(status).padStart(maxStatusLength, " "); // Pad the status to ensure uniform width return `${url}: ${formattedStatus}`; }) .join("\n");