From 6a1e89c2887e0e537e7f8f9c84af7b3d1f3ee719 Mon Sep 17 00:00:00 2001 From: hippoz <10706925-hippoz@users.noreply.gitlab.com> Date: Sat, 23 Apr 2022 00:31:36 +0300 Subject: [PATCH] frontend: remove debug function --- frontend/src/main.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/frontend/src/main.js b/frontend/src/main.js index d695566..497d2b6 100644 --- a/frontend/src/main.js +++ b/frontend/src/main.js @@ -12,14 +12,6 @@ if (loadingElement) { loadingElement.parentElement.removeChild(loadingElement); } -window.__testing = async () => { - for (let i = 0; i < 100; i++) { - await request("POST", apiRoute("channels/6/messages"), true, { - content: `test ${i}` - }); - } -}; - const app = new App({ target: document.body });