File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
examples/resumable-stream-chat/src Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 11diff --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({
You can’t perform that action at this time.
0 commit comments