Skip to content

Commit

Permalink
docs: removed help md files linking directly to documentation (#203)
Browse files Browse the repository at this point in the history
* feat: link copilot, continue help section to related documentation section

* chore: update openapi and msw handler
  • Loading branch information
peppescg authored Jan 27, 2025
1 parent e849194 commit 664cfe3
Show file tree
Hide file tree
Showing 18 changed files with 1,159 additions and 294 deletions.
132 changes: 0 additions & 132 deletions public/help/continue-setup.md

This file was deleted.

98 changes: 0 additions & 98 deletions public/help/copilot-setup.md

This file was deleted.

Binary file removed public/help/images/continue-chat.png
Binary file not shown.
Binary file removed public/help/images/continue-config-light.webp
Binary file not shown.
Binary file removed public/help/images/continue-extension-light.webp
Binary file not shown.
Binary file removed public/help/images/copilot-fail.png
Binary file not shown.
Binary file removed public/help/images/copilot-success.png
Binary file not shown.
4 changes: 2 additions & 2 deletions src/App.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ describe("App", () => {

expect(
screen.getByRole("menuitem", {
name: /set up in continue/i,
name: /use with continue/i,
}),
).toBeVisible();

expect(
screen.getByRole("menuitem", {
name: /set up in copilot/i,
name: /use with copilot/i,
}),
).toBeVisible();

Expand Down
2 changes: 0 additions & 2 deletions src/Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { Route, Routes } from "react-router-dom";
import { RouteWorkspace } from "./routes/route-workspace";
import { RouteWorkspaces } from "./routes/route-workspaces";
import { RouteCertificates } from "./routes/route-certificates";
import { RouteHelp } from "./routes/route-help";
import { RouteChat } from "./routes/route-chat";
import { RouteDashboard } from "./routes/route-dashboard";
import { RouteCertificateSecurity } from "./routes/route-certificate-security";
Expand All @@ -15,7 +14,6 @@ export default function Page() {
<Routes>
<Route path="/" element={<RouteDashboard />} />
<Route path="/prompt/:id" element={<RouteChat />} />
<Route path="/help/:section" element={<RouteHelp />} />
<Route path="/certificates" element={<RouteCertificates />} />
<Route path="/workspace/:name" element={<RouteWorkspace />} />
<Route path="/workspaces" element={<RouteWorkspaces />} />
Expand Down
Loading

0 comments on commit 664cfe3

Please sign in to comment.