Use fragment instead of wrapper div

pull/10616/head
Alex P 2018-05-23 14:35:04 -07:00
parent 507122b182
commit bd0e8ff4be
1 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ export class DataExplorer extends PureComponent<Props, State> {
const {showWriteForm} = this.state
return (
<div className="data-explorer">
<>
{showWriteForm ? (
<OverlayTechnologies>
<WriteDataForm
@ -150,7 +150,7 @@ export class DataExplorer extends PureComponent<Props, State> {
editQueryStatus={queryConfigActions.editQueryStatus}
/>
</ResizeContainer>
</div>
</>
)
}