We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4596cd commit 6f8ee71Copy full SHA for 6f8ee71
src/utils/UserFunction.ts
@@ -112,15 +112,14 @@ function _loadUserApp(
112
113
async function _initializeFunction(userApp: any): Promise<void> {
114
try {
115
- await userApp.initializeFunction();
+ await userApp.initializeFunction();
116
} catch (e) {
117
- if (e instanceof TypeError) {
118
- // initializeFunction lifecycle hook not implemented
119
- return;
120
- }
121
- else {
122
- throw e;
123
+ if (e instanceof TypeError) {
+ // initializeFunction lifecycle hook not implemented
+ return;
+ } else {
+ throw e;
+ }
124
}
125
126
0 commit comments