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: [], -} +};