Skip to content

Commit 19dbc11

Browse files
committed
try to fix imports and stuff
1 parent a20aaf6 commit 19dbc11

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

examples/resumable-stream-chat/src/app.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ export default function Chat() {
8383
switch (part.type) {
8484
case "text":
8585
return (
86-
// biome-ignore lint/suspicious/noArrayIndexKey: vibes
8786
<div key={i} className="message-content">
8887
{part.text}
8988
</div>

packages/agents/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040
},
4141
"devDependencies": {
4242
"@cloudflare/workers-oauth-provider": "^0.1.0",
43-
"@types/yargs": "^17.0.34",
4443
"@testing-library/react": "^16.3.0",
4544
"@testing-library/react-hooks": "^8.0.1",
45+
"@types/yargs": "^17.0.34",
4646
"msw": "^2.11.3",
4747
"react": "*",
4848
"vitest-browser-react": "^1.0.1",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
diff --git a/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js b/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js
2-
index 02762f0..7deca89 100644
2+
index 02762f0..5b06fff 100644
33
--- a/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js
44
+++ b/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js
55
@@ -1,7 +1,7 @@
66
/**
77
* AJV-based JSON Schema validator provider
88
*/
99
-import { Ajv } from 'ajv';
10-
+import Ajv from 'ajv'; // modifying this because vitest is struggling to pick up the import
10+
+import Ajv from 'ajv';
1111
import _addFormats from 'ajv-formats';
1212
function createDefaultAjvInstance() {
1313
const ajv = new Ajv({

0 commit comments

Comments
 (0)