Skip to content

Commit 6f8ee71

Browse files
committed
format UserFunction.ts
1 parent a4596cd commit 6f8ee71

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

src/utils/UserFunction.ts

+7-8
Original file line numberDiff line numberDiff line change
@@ -112,15 +112,14 @@ function _loadUserApp(
112112

113113
async function _initializeFunction(userApp: any): Promise<void> {
114114
try {
115-
await userApp.initializeFunction();
115+
await userApp.initializeFunction();
116116
} catch (e) {
117-
if (e instanceof TypeError) {
118-
// initializeFunction lifecycle hook not implemented
119-
return;
120-
}
121-
else {
122-
throw e;
123-
}
117+
if (e instanceof TypeError) {
118+
// initializeFunction lifecycle hook not implemented
119+
return;
120+
} else {
121+
throw e;
122+
}
124123
}
125124
}
126125

0 commit comments

Comments
 (0)