@@ -162,7 +169,7 @@ export default function DetailPage(): JSX.Element {
const servers = await fetchMCPServers();
// Get the ID from the query parameter
const params = new URLSearchParams(location.search);
- const id = params.get('id');
+ const id = params.get("id");
if (!id) {
setError("No extension ID provided");
return;
@@ -236,7 +243,9 @@ export default function DetailPage(): JSX.Element {
-
{error || "Extension not found"}
+
+ {error || "Extension not found"}
+
@@ -247,4 +256,4 @@ export default function DetailPage(): JSX.Element {
}
return ;
-}
\ No newline at end of file
+}
diff --git a/documentation/src/pages/extensions/index.tsx b/documentation/src/pages/extensions/index.tsx
index fc8e9ca65973..85772c188a55 100644
--- a/documentation/src/pages/extensions/index.tsx
+++ b/documentation/src/pages/extensions/index.tsx
@@ -26,7 +26,7 @@ export default function HomePage() {
? await searchMCPServers(trimmedQuery)
: await fetchMCPServers();
- console.log('Loaded servers:', results);
+ console.log("Loaded servers:", results);
setServers(results);
} catch (err) {
const errorMessage =
@@ -45,15 +45,19 @@ export default function HomePage() {
return (
-
+
-
Browse Extensions
-
Your central directory for discovering and installing extensions.
+
+ Browse Extensions
+
+
+ Your central directory for discovering and installing extensions.
+
setSearchQuery(e.target.value)}
@@ -64,7 +68,7 @@ export default function HomePage() {
{error}
)}
-
+
{searchQuery
@@ -111,4 +115,4 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}
diff --git a/documentation/tailwind.config.js b/documentation/tailwind.config.js
index f21ed4b32cb0..b568a8c0b8d9 100644
--- a/documentation/tailwind.config.js
+++ b/documentation/tailwind.config.js
@@ -24,9 +24,9 @@ module.exports = {
iconSubtle: "var(--icon-subtle)",
},
fontFamily: {
- sans: ['"Cash Sans"', 'sans-serif'],
+ sans: ['"Cash Sans"', "sans-serif"],
},
},
},
plugins: [],
-};
\ No newline at end of file
+};