diff --git a/src/Explorer/Explorer.tsx b/src/Explorer/Explorer.tsx index 98340308a..0316837b7 100644 --- a/src/Explorer/Explorer.tsx +++ b/src/Explorer/Explorer.tsx @@ -53,7 +53,7 @@ import { NotebookUtil } from "./Notebook/NotebookUtil"; import AddCollectionPane from "./Panes/AddCollectionPane"; import { AddCollectionPanel } from "./Panes/AddCollectionPanel"; import AddDatabasePane from "./Panes/AddDatabasePane"; -import { AddDatabasePanelF } from "./Panes/AddDatabasePanel/AddDatabasePanel"; +import { AddDatabasePanel } from "./Panes/AddDatabasePanel/AddDatabasePanel"; import { BrowseQueriesPane } from "./Panes/BrowseQueriesPane/BrowseQueriesPane"; import CassandraAddCollectionPane from "./Panes/CassandraAddCollectionPane"; import { ContextualPaneBase } from "./Panes/ContextualPaneBase"; @@ -2047,7 +2047,7 @@ export default class Explorer { } else { this.openSidePanel( "Add Database", - { it("should render Default properly", () => { - const wrapper = shallow(); + const wrapper = shallow(); expect(wrapper).toMatchSnapshot(); }); }); diff --git a/src/Explorer/Panes/AddDatabasePanel/AddDatabasePanel.tsx b/src/Explorer/Panes/AddDatabasePanel/AddDatabasePanel.tsx index 64449c837..ab2dbe2b7 100644 --- a/src/Explorer/Panes/AddDatabasePanel/AddDatabasePanel.tsx +++ b/src/Explorer/Panes/AddDatabasePanel/AddDatabasePanel.tsx @@ -24,7 +24,7 @@ export interface AddDatabasePaneProps { openNotificationConsole: () => void; } -export const AddDatabasePanelF: FunctionComponent = ({ +export const AddDatabasePanel: FunctionComponent = ({ explorer: container, closePanel, openNotificationConsole,