Fix missing await (#19273)

th-downstream
Yamagishi Kazutoshi 2 years ago committed by GitHub
parent c745b1caf0
commit 782154a762

@ -5,7 +5,7 @@ import { start } from '../mastodon/common';
start();
loadPolyfills().then(async () => {
const { default: main } = import('mastodon/main');
const { default: main } = await import('mastodon/main');
return main();
}).catch(e => {

Loading…
Cancel
Save