Merge pull request #2576 from jellyfin/fix-es6-1

Fix ES6 migration
This commit is contained in:
Bill Thornton 2021-04-10 15:35:27 -04:00 committed by GitHub
commit 98814a5b66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,7 +64,7 @@ import ServerConnections from '../../../components/ServerConnections';
}
function goBack() {
import('../../../components/appRouter').then(({default: appRouter}) => {
import('../../../components/appRouter').then(({appRouter}) => {
appRouter.back();
});
}