cc: Don't set `selectedSection` to 'attack' in `componentDidMount` in `ConfigurePage.js`

Remove a line which seems to do nothing useful.
Causes issues if the first tab in the configuration page
is not the ATT&CK tab.
This commit is contained in:
Shreya 2021-07-14 18:17:55 +05:30 committed by Mike Salvatore
parent a786428652
commit 035ce6c8b0
1 changed files with 1 additions and 2 deletions

View File

@ -83,8 +83,7 @@ class ConfigurePageComponent extends AuthComponent {
schema: monkeyConfig.schema,
configuration: monkeyConfig.configuration,
attackConfig: attackConfig.configuration,
sections: sections,
selectedSection: 'attack'
sections: sections
})
});
};