Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -226,13 +226,9 @@ export function getSlashCommandDropdownOptions(

if (query.length === 0 && commandItems.length === 0) {
commandItems.push({
title: "Explore prompts",
title: "Create a prompt",
type: "action",
action: () =>
ideMessenger.post(
"openUrl",
"https://hub.continue.dev/explore/prompts",
),
action: () => ideMessenger.post("config/newPromptFile", undefined),
description: "",
name: "",
id: "",
Expand Down
9 changes: 0 additions & 9 deletions gui/src/pages/config/sections/HelpSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,15 +179,6 @@ export function HelpSection() {
<h3 className="mb-3 text-base font-medium">Resources</h3>
<Card className="!p-0">
<div className="flex flex-col">
<ConfigRow
title="Continue Hub"
description="Visit hub.continue.dev to explore custom agents and blocks"
icon={LinkIcon}
onClick={() =>
ideMessenger.post("openUrl", "https://hub.continue.dev/")
}
/>

<ConfigRow
title="Documentation"
description="Learn how to configure and use Continue"
Expand Down
Loading