Compare commits
No commits in common. "9523152165df024cbddf13e0dea461a2c41e529a" and "8331029e91220cc9c679dce1058ffc5f2cbb0577" have entirely different histories.
9523152165
...
8331029e91
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@
|
|||
"postinstall": "link-module-alias",
|
||||
"prepare": "husky || true",
|
||||
"deep-clean": "./node_modules/.bin/react-native-clean-project --keep-node-modules --remove-iOS-build --keep-brew --keep-pods --remove-iOS-pods --remove-android-build && yarn clean",
|
||||
"clean": "rm -rf ./node_modules dist/* ios/build ios/Pods ios/KScoreApp.xcarchive android/build android/app/build || true",
|
||||
"clean": "\\rm -fr ./node_modules && \\rm -fr dist/* && \\rm -fr ios/build ios/Pods ios/KScoreApp.xcarchive && \\rm -fr android/build android/app/build",
|
||||
"prebuild": "expo prebuild && yarn prebuild:hackfix",
|
||||
"prebuild:hackfix": "node scripts/removeDuplicates.js",
|
||||
"lint": "eslint .",
|
||||
|
|
|
@ -42,7 +42,7 @@ const initializeStores = () => {
|
|||
// Initialize each store with error handling
|
||||
const initializeStore = async (name, initFn) => {
|
||||
try {
|
||||
await initFn();
|
||||
await Promise.resolve(initFn());
|
||||
appLogger.debug(`${name} initialized successfully`);
|
||||
} catch (error) {
|
||||
lifecycleLogger.error(`Failed to initialize ${name}`, {
|
||||
|
|
Loading…
Add table
Reference in a new issue