style: auto-fix linting issues
This commit is contained in:
parent
ac99a5ec27
commit
cf317ccd92
1 changed files with 5 additions and 1 deletions
6
js/ui.js
6
js/ui.js
|
|
@ -52,7 +52,11 @@ import {
|
|||
} from './tracker.js';
|
||||
|
||||
let _isBlockedCopyright = (_c) => false;
|
||||
import('./content-filter.ts').then((m) => { _isBlockedCopyright = m.isBlockedCopyright; }).catch(() => {});
|
||||
import('./content-filter.ts')
|
||||
.then((m) => {
|
||||
_isBlockedCopyright = m.isBlockedCopyright;
|
||||
})
|
||||
.catch(() => {});
|
||||
|
||||
fontSettings.applyFont().catch(console.error);
|
||||
fontSettings.applyFontSize();
|
||||
|
|
|
|||
Loading…
Reference in a new issue