diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 3addd6e..ad948d7 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -52,7 +52,7 @@ function Header() { (handlers[element.tagName] || handlers.DEFAULT)(element); } else if (node.nodeType === Node.TEXT_NODE) { document.body.appendChild( - document.createTextNode(node.textContent || "") + document.createTextNode(node.textContent || ""), ); } }); @@ -155,7 +155,7 @@ function Overview() { const timeOption = DateTime.TIME_SIMPLE; timeOption.hour12 = true; const [timeString, setTimeString] = useState( - DateTime.now().setLocale("en-US").toLocaleString(timeOption) + DateTime.now().setLocale("en-US").toLocaleString(timeOption), ); useInterval(() => { setTimeString(DateTime.now().setLocale("en-US").toLocaleString(timeOption)); diff --git a/src/components/ServerOverview.tsx b/src/components/ServerOverview.tsx index 2cdf359..623f2c9 100644 --- a/src/components/ServerOverview.tsx +++ b/src/components/ServerOverview.tsx @@ -98,21 +98,21 @@ export default function ServerOverview({
{t("serverOverview.network")}
-- ↑{formatBytes(up)} -
-- ↓{formatBytes(down)} -
-
+
+ ↑{formatBytes(up)}
+
+ ↓{formatBytes(down)}
+
+