This commit is contained in:
Ashwin Bhat
2024-10-07 17:25:40 -07:00
parent 0a7f5f9f22
commit 51cde09845
4 changed files with 1 additions and 3 deletions

View File

@@ -94,7 +94,7 @@ const App = () => {
<div className="flex-1 flex flex-col overflow-hidden"> <div className="flex-1 flex flex-col overflow-hidden">
<h1 className="text-2xl font-bold p-4">MCP Inspector</h1> <h1 className="text-2xl font-bold p-4">MCP Inspector</h1>
<div className="flex-1 overflow-auto"> <div className="flex-1 overflow-auto">
<Tabs defaultValue="requests" className="w-full"> <Tabs defaultValue="requests" className="w-full p-4">
<TabsList className="mb-4"> <TabsList className="mb-4">
<TabsTrigger value="requests"> <TabsTrigger value="requests">
<Send className="w-4 h-4 mr-2" /> <Send className="w-4 h-4 mr-2" />

View File

@@ -27,7 +27,6 @@ const PromptsTab = ({
promptContent: string; promptContent: string;
error: string | null; error: string | null;
}) => { }) => {
console.log("prompts", prompts);
return ( return (
<TabsContent value="prompts" className="grid grid-cols-2 gap-4"> <TabsContent value="prompts" className="grid grid-cols-2 gap-4">
<div className="bg-white rounded-lg shadow"> <div className="bg-white rounded-lg shadow">

View File

View File

@@ -28,7 +28,6 @@ a:hover {
body { body {
margin: 0; margin: 0;
display: flex;
place-items: center; place-items: center;
min-width: 320px; min-width: 320px;
min-height: 100vh; min-height: 100vh;