Skip to content

Commit

Permalink
feat: add GitHub link to sidebar for bug reports and contributions
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwin-ant committed Dec 19, 2024
1 parent ef32a8f commit 53226dd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion client/src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useState } from "react";
import { Play, ChevronDown, ChevronRight, CircleHelp, Bug } from "lucide-react";
import { Play, ChevronDown, ChevronRight, CircleHelp, Bug, Github } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import {
Expand Down Expand Up @@ -248,6 +248,11 @@ const Sidebar = ({
<Bug className="w-4 h-4 text-gray-800" />
</Button>
</a>
<a href="https://github.com/modelcontextprotocol/inspector" target="_blank" rel="noopener noreferrer">
<Button variant="ghost" title="Report bugs or contribute on GitHub">
<Github className="w-4 h-4 text-gray-800" />
</Button>
</a>
</div>
</div>
</div>
Expand Down

0 comments on commit 53226dd

Please sign in to comment.