From 0e0e6a2257682fdf11d573851c68257f34b435aa Mon Sep 17 00:00:00 2001 From: Steve Faulkner Date: Wed, 5 May 2021 19:31:07 -0500 Subject: [PATCH] more --- src/Explorer/Explorer.tsx | 4 ++-- src/Explorer/Panes/AddDatabasePanel/AddDatabasePanel.test.tsx | 4 ++-- src/Explorer/Panes/AddDatabasePanel/AddDatabasePanel.tsx | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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,