Remove feature flag

This commit is contained in:
Victor Meng
2022-09-14 18:27:09 -07:00
parent bc99ca372b
commit d78610cd33
2 changed files with 2 additions and 2 deletions

View File

@@ -185,7 +185,7 @@ export default class Explorer {
useNotebook.getState().setNotebookBasePath(userContext.features.notebookBasePath); useNotebook.getState().setNotebookBasePath(userContext.features.notebookBasePath);
} }
if (!userContext.features.enablePGQuickstart || userContext.apiType !== "Postgres") { if (userContext.apiType !== "Postgres") {
this.refreshExplorer(); this.refreshExplorer();
} }
} }

View File

@@ -34,7 +34,7 @@ export const CommandBar: React.FC<Props> = ({ container }: Props) => {
const buttons = useCommandBar((state) => state.contextButtons); const buttons = useCommandBar((state) => state.contextButtons);
const backgroundColor = StyleConstants.BaseLight; const backgroundColor = StyleConstants.BaseLight;
if (userContext.features.enablePGQuickstart && userContext.apiType === "Postgres") { if (userContext.apiType === "Postgres") {
const buttons = CommandBarComponentButtonFactory.createPostgreButtons(container); const buttons = CommandBarComponentButtonFactory.createPostgreButtons(container);
return ( return (
<div className="commandBarContainer"> <div className="commandBarContainer">