From 9523152165df024cbddf13e0dea461a2c41e529a Mon Sep 17 00:00:00 2001 From: devthejo Date: Sun, 29 Jun 2025 11:07:16 +0200 Subject: [PATCH] chore: clean --- src/app/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/index.js b/src/app/index.js index 499e6f8..d2d4eda 100644 --- a/src/app/index.js +++ b/src/app/index.js @@ -42,7 +42,7 @@ const initializeStores = () => { // Initialize each store with error handling const initializeStore = async (name, initFn) => { try { - await Promise.resolve(initFn()); + await initFn(); appLogger.debug(`${name} initialized successfully`); } catch (error) { lifecycleLogger.error(`Failed to initialize ${name}`, {