Resolve typescript eslint warning (#36314)
This commit is contained in:
parent
da6ae98e57
commit
c578a0cb74
4 changed files with 157 additions and 5 deletions
|
|
@ -19,7 +19,7 @@ export function loadPolyfills() {
|
|||
return Promise.all([
|
||||
loadIntlPolyfills(),
|
||||
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- those properties might not exist in old browsers, even if they are always here in types
|
||||
needsExtraPolyfills && importExtraPolyfills(),
|
||||
needsExtraPolyfills ? importExtraPolyfills() : Promise.resolve(),
|
||||
loadEmojiPolyfills(),
|
||||
]);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ const popModal = (
|
|||
modalType === state.get('stack').get(0)?.get('modalType')
|
||||
) {
|
||||
return state
|
||||
.set('ignoreFocus', !!ignoreFocus)
|
||||
.set('ignoreFocus', ignoreFocus)
|
||||
.update('stack', (stack) => stack.shift());
|
||||
} else {
|
||||
return state;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue