Tommaso Tessarolo

Results 9 issues of Tommaso Tessarolo

In my code I need to update options for a brake already instantiated (to be more specific I need to update the `timeout`value). I'm using Brakes internals to do that:...

enhancement

Changed: - README.md - /docs --> new Worker(new URL("./foo/bar", import.meta.url))

To avoid Unexpected Token Error, just use: ```javascript const worker = await spawn(new Worker(new URL("./worker.js", import.meta.url))); ``` instead of: ```javascript const worker = await spawn(new Worker("./worker.js")) ```

documentation

**Describe the bug** ``` ERROR in ./node_modules/@react-dnd/invariant/dist/index.js 42:16-23 Module not found: Error: Can't resolve 'process/browser' in '/Users/tommix/DEVELOPMENT/ARES/ares-ui/ares-control-center/node_modules/@react-dnd/invariant/dist' Did you mean 'browser.js'? BREAKING CHANGE: The request 'process/browser' failed to resolve only...

With REACT 18 this component breaks. /index.js ```javascript self.setState(function () { return _extends({}, self.state, { dragDistance: distanceFromCenter, mousePos: { x: _d3Selection.event.sourceEvent.clientX, y: _d3Selection.event.sourceEvent.clientY }, valueAngle: monitoring ? finalAngle : initialAngle...

Hi All – I'm getting a deprecation WARNING. Any plan to fix-it? > backend.js:6 Warning: componentWillReceiveProps has been renamed, and is not recommended for use. See https://fb.me/react-unsafe-component-lifecycles for details. >...

Maybe because is still experimental but OpenAIAssistantRunnable don't seams to track on LangSmith.

auto:bug
stale

I had serious problems using this library by interfacing it with an existing implementation of prom-client (v13.1.0) using the default client and registry: ```javascript const client = require("prom-client"); const register...

Hi – the decode process works fine only if the server respond with just strings. But the Server-Sent Events (SSE) standard implies a more complex response: ```typescript interface EventMessage {...