Skip to content

Commit 01cfdea

Browse files
BrendonovichRobertWsp
authored andcommitted
fix(app): avoid bootstrap error popups during global sync init (anomalyco#22426)
1 parent 2bd3600 commit 01cfdea

1 file changed

Lines changed: 14 additions & 13 deletions

File tree

packages/app/src/context/global-sync/bootstrap.ts

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)