From d4df355de4dfe6c21b578e1fc0a266fb96f2b05a Mon Sep 17 00:00:00 2001 From: grainsoft Date: Tue, 25 Nov 2025 21:01:36 +0200 Subject: [PATCH] update --- src/core/Boot.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/core/Boot.js b/src/core/Boot.js index fe80135..e12c856 100644 --- a/src/core/Boot.js +++ b/src/core/Boot.js @@ -15,9 +15,6 @@ export class Boot { // Static Global Data static data = {}; - // App Loaded state - static #started = false; - // Widget Stack static widgetStack = {}; @@ -32,13 +29,6 @@ export class Boot { static vars = {}; static ready(callback) { - - if (Boot.#started) { - console.log('Register already called!'); - return; - } - - Boot.#started = true; dxReady(() => {