-
+
{name}
{docsUrl && (
@@ -253,12 +253,12 @@ const UnifiedMcpListItem: React.FC = ({
)}
{description && (
-
+
{description}
)}
{!description && tags && tags.length > 0 && (
-
+
{tags.join(", ")}
)}
@@ -269,7 +269,7 @@ const UnifiedMcpListItem: React.FC
= ({
@@ -285,7 +285,7 @@ const UnifiedMcpListItem: React.FC
= ({
@@ -301,7 +301,7 @@ const UnifiedMcpListItem: React.FC
= ({
diff --git a/src/components/prompts/PromptListItem.tsx b/src/components/prompts/PromptListItem.tsx
index 1ba298bc4..36e1186a0 100644
--- a/src/components/prompts/PromptListItem.tsx
+++ b/src/components/prompts/PromptListItem.tsx
@@ -36,11 +36,11 @@ const PromptListItem: React.FC
= ({
-
+
{prompt.name}
{prompt.description && (
-
+
{prompt.description}
)}
diff --git a/src/components/prompts/PromptPanel.tsx b/src/components/prompts/PromptPanel.tsx
index 12b9b2b95..88822b3ac 100644
--- a/src/components/prompts/PromptPanel.tsx
+++ b/src/components/prompts/PromptPanel.tsx
@@ -108,21 +108,21 @@ const PromptPanel = React.forwardRef
(
{loading ? (
-
+
{t("prompts.loading")}
) : promptEntries.length === 0 ? (
-
+
-
+
{t("prompts.empty")}
-
+
{t("prompts.emptyDescription")}
diff --git a/src/components/providers/forms/ApiKeyInput.tsx b/src/components/providers/forms/ApiKeyInput.tsx
index 87939e287..0c4a1ef77 100644
--- a/src/components/providers/forms/ApiKeyInput.tsx
+++ b/src/components/providers/forms/ApiKeyInput.tsx
@@ -30,7 +30,7 @@ const ApiKeyInput: React.FC
= ({
const inputClass = `w-full px-3 py-2 pr-10 border rounded-lg text-sm transition-colors ${
disabled
- ? "bg-gray-100 dark:bg-gray-800 border-border-default text-gray-400 dark:text-gray-500 cursor-not-allowed"
+ ? "bg-muted border-border-default text-muted-foreground cursor-not-allowed"
: "border-border-default dark:bg-gray-800 dark:text-gray-100 focus:outline-none focus:ring-2 focus:ring-blue-500/20 dark:focus:ring-blue-400/20"
}`;