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(() => {