frontend: remove debug function

This commit is contained in:
hippoz 2022-04-23 00:31:36 +03:00
parent 164545bb26
commit 6a1e89c288
Signed by: hippoz
GPG key ID: 7C52899193467641

View file

@ -12,14 +12,6 @@ if (loadingElement) {
loadingElement.parentElement.removeChild(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({ const app = new App({
target: document.body target: document.body
}); });