chore: clean

This commit is contained in:
devthejo 2025-06-29 11:07:16 +02:00
parent b5a1c21e8e
commit 9523152165

View file

@ -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}`, {