File tree Expand file tree Collapse file tree
packages/app/src/context/global-sync Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -115,20 +115,21 @@ export async function bootstrapGlobal(input: {
115115 } ) ,
116116 ) ,
117117 ]
118-
119- showErrors ( {
120- errors : errors ( await runAll ( fast ) ) ,
121- title : input . requestFailedTitle ,
122- translate : input . translate ,
123- formatMoreCount : input . formatMoreCount ,
124- } )
118+ await runAll ( fast )
119+ // showErrors({
120+ // errors: errors(await runAll(fast)),
121+ // title: input.requestFailedTitle,
122+ // translate: input.translate,
123+ // formatMoreCount: input.formatMoreCount,
124+ // })
125125 await waitForPaint ( )
126- showErrors ( {
127- errors : errors ( await runAll ( slow ) ) ,
128- title : input . requestFailedTitle ,
129- translate : input . translate ,
130- formatMoreCount : input . formatMoreCount ,
131- } )
126+ await runAll ( slow )
127+ // showErrors({
128+ // errors: errors(),
129+ // title: input.requestFailedTitle,
130+ // translate: input.translate,
131+ // formatMoreCount: input.formatMoreCount,
132+ // })
132133 input . setGlobalStore ( "ready" , true )
133134}
134135
You can’t perform that action at this time.
0 commit comments