From 0b458dfb58a8a3235b30769c38588d89c32dd449 Mon Sep 17 00:00:00 2001 From: alexandraRamanenka Date: Thu, 14 Dec 2023 15:52:51 +0200 Subject: [PATCH] Refactoring --- src/components/html/HTML.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/components/html/HTML.js b/src/components/html/HTML.js index 327f5b36de..16653f32ea 100644 --- a/src/components/html/HTML.js +++ b/src/components/html/HTML.js @@ -26,14 +26,6 @@ export default class HTMLComponent extends Component { }; } - constructor(...args) { - const alert = window.alert; - window.alert = (msg) => { - return alert(msg); - }; - super(...args); - } - static savedValueTypes() { return []; }