You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When there is an error in one of my callbacks, I get the following error from milo's fail handler:
TypeError: this.memory.buffer.subarray is not a function
at Object.fail (/Users/michael/Projects/remix-the-web/node_modules/.pnpm/@[email protected]/node_modules/@perseveranza-pets/milo/index.js:40:37)
at runCallback (/Users/michael/Projects/remix-the-web/node_modules/.pnpm/@[email protected]/node_modules/@perseveranza-pets/milo/index.js:18:13)
at wasm://wasm/00036016:wasm-function[25]:0x57e2
at wasm://wasm/00036016:wasm-function[6]:0x68f
at wasm://wasm/00036016:wasm-function[47]:0x74a3
at Object.parse (/Users/michael/Projects/remix-the-web/node_modules/.pnpm/@[email protected]/node_modules/@perseveranza-pets/milo/index.js:35:15)
at file:///Users/michael/Projects/remix-the-web/packages/node-fetch-server/src/lib/serve.ts:172:33
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
Node.js v22.8.0
It looks like memory.buffer is an ArrayBuffer, but you're expecting it to be a TypedArray.
The text was updated successfully, but these errors were encountered:
When there is an error in one of my callbacks, I get the following error from milo's
fail
handler:It looks like
memory.buffer
is anArrayBuffer
, but you're expecting it to be aTypedArray
.The text was updated successfully, but these errors were encountered: