fix type errors

This commit is contained in:
Ashwin Bhat
2024-10-16 16:20:32 -07:00
parent c6a11422f4
commit 0ffedbf8fa
6 changed files with 10 additions and 10 deletions

View File

@@ -5,11 +5,6 @@ import { TabsContent } from "@/components/ui/tabs";
import { Resource } from "mcp-typescript/types.js";
import ListPane from "./ListPane";
export type Resource = {
uri: string;
name: string;
};
const ResourcesTab = ({
resources,
listResources,
@@ -38,7 +33,7 @@ const ResourcesTab = ({
renderItem={(resource) => (
<div className="flex items-center w-full">
<FileText className="w-4 h-4 mr-2 flex-shrink-0 text-gray-500" />
<span className="flex-1 truncate" title={resource.uri}>
<span className="flex-1 truncate" title={resource.uri.toString()}>
{resource.name}
</span>
<ChevronRight className="w-4 h-4 flex-shrink-0 text-gray-400" />