From 582be75c2302042d91a95117485718696e624f59 Mon Sep 17 00:00:00 2001 From: Aidan Date: Mon, 9 Dec 2024 21:40:18 -0500 Subject: [PATCH] syntax fixes --- src/js/status.js | 4 ++-- tailwind.config.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/js/status.js b/src/js/status.js index 382490b..69159cd 100644 --- a/src/js/status.js +++ b/src/js/status.js @@ -21,11 +21,11 @@ async function testPing() { const time = await ping(url); if (url === 'https://aidxn.fun/ping') { const website = document.getElementById("website"); - website.textContent = `[ONLINE - ${time} ms]` + website.textContent = `[ONLINE - ${time} ms]`; } if (url === 'https://kantor.aidxn.fun/ping') { const status1 = document.getElementById("status1"); - status1.textContent = `[ONLINE - ${time} ms]` + status1.textContent = `[ONLINE - ${time} ms]`; status1.className = 'text-green-500 font-bold'; } return { url, time }; diff --git a/tailwind.config.js b/tailwind.config.js index ccbe80f..b7a0a9b 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -9,5 +9,5 @@ module.exports = { }, }, plugins: [], -} +};