diff --git a/src/Explorer/SplashScreen/SplashScreen.tsx b/src/Explorer/SplashScreen/SplashScreen.tsx index 7d8e65337..68ca591bc 100644 --- a/src/Explorer/SplashScreen/SplashScreen.tsx +++ b/src/Explorer/SplashScreen/SplashScreen.tsx @@ -250,12 +250,14 @@ export class SplashScreen extends React.Component { }); } - items.push({ - iconSrc: OpenQueryIcon, - title: "Open Query", - description: null, - onClick: () => this.container.openBrowseQueriesPanel(), - }); + if (userContext.apiType === "SQL") { + items.push({ + iconSrc: OpenQueryIcon, + title: "Open Query", + description: null, + onClick: () => this.container.openBrowseQueriesPanel(), + }); + } if (userContext.apiType !== "Cassandra") { items.push({