You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
Fix lint issues in new code
This commit is contained in:
@@ -123,7 +123,12 @@ export class IntegrationManagers {
|
||||
const apiUrl = data['api_url'];
|
||||
if (!apiUrl || !uiUrl) return;
|
||||
|
||||
const manager = new IntegrationManagerInstance(Kind.Account, apiUrl, uiUrl, w['id'] || w['state_key'] || '');
|
||||
const manager = new IntegrationManagerInstance(
|
||||
Kind.Account,
|
||||
apiUrl,
|
||||
uiUrl,
|
||||
w['id'] || w['state_key'] || '',
|
||||
);
|
||||
this.managers.push(manager);
|
||||
});
|
||||
this.primaryManager = null; // reset primary
|
||||
@@ -245,4 +250,4 @@ export class IntegrationManagers {
|
||||
}
|
||||
|
||||
// For debugging
|
||||
window.mx_IntegrationManagers = IntegrationManagers;
|
||||
window.mxIntegrationManagers = IntegrationManagers;
|
||||
|
||||
Reference in New Issue
Block a user