Marcus Reinhardt

Results 84 comments of Marcus Reinhardt

Not sure if it helps, but the mentioned code part is based on this: `expandedKeys` contains all ids which are above, so i just search for `expandedKeys` in the code...

@arkadiusztw - thanks for the hint - i have restored the sandbox if you need additional information or something else, please let me know :)

@ukrbublik - were you able to refactor this? Current workaround would be to ignore error message in the console but not sure if this is a good idea.

Works as expected. Since `got` retries on error by default, the hook is triggered each time. From the docs: > To disable this option, set [options.retry.limit](https://github.com/sindresorhus/got/blob/main/documentation/7-retry.md#retry) to `0`. Example: ```js...

Hi @makhataibar, unfortunately I can't reproduce your described behavior. here the repo which I have used to reproduce it: https://github.com/noxify/honojs-got And here the link to the test client for your...

@sumit-sen-90 - based on the docs: > By default, Got will retry on failure. To disable this option, set [options.retry.limit](https://github.com/sindresorhus/got/blob/main/documentation/7-retry.md#retry) to 0.

Hi @sumit-sen-90 , here a quick example: https://github.com/noxify/honojs-got btw. you should check your keyboard, it seems you have a problem with your capslock ;) tbh - for me it sounds...

Hey, we found a workaround/solution to solve this issue. With PrimeReact 9 it's now possible to control the expanded elements. ( https://primereact.org/treeselect/#controlled ) We have updated our logic to get...

@melloware Here the new sandbox: https://codesandbox.io/s/angry-minsky-6zjp8g Updated also the initial post with the workaround :)

Maybe a bit late, does it work if you use `import` instead of `require`? Example: ```ts // src/app/page.tsx import odbc from "odbc" export default function Home() { const connectionString =...