Skip to content
Snippets Groups Projects
Commit 4457b02d authored by tamaina's avatar tamaina
Browse files

fix(frontend)?: importAppScriptはimportをawaitするように

parent 08d618bb
No related branches found
No related tags found
6 merge requests!556release 2024.5.0,!554prepare for 2024.5, 2nd try,!552prepare for release 2024.5,!516merge from misskey: preparing for release 2024.5.0,!502merge from misskey at end of April,!465some future changes coming from upstream
......@@ -86,8 +86,8 @@
//#endregion
//#region Script
function importAppScript() {
import(`/vite/${CLIENT_ENTRY}`)
async function importAppScript() {
await import(`/vite/${CLIENT_ENTRY}`)
.catch(async e => {
console.error(e);
renderError('APP_IMPORT', e);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment