Andrey Briginets

Results 33 comments of Andrey Briginets

Having the same issue with `CanceledError`: ```ts import { CanceledError } from 'axios'; console.log(CanceledError); // undefined ``` And `error instanceof CanceledError` throws an error because `undefined` is not an object...

@C-Saunders yes I did. Server is not accepting it like this. I have created a repl for myself, but you can test it as well if you have any ideas:...

Not sure if this is still relevant to anyone but I would suggest adding `enabled` prop. For example, in Next.JS we have `process.browser` which is the boolean flag indicating if...

Sure, there it is https://codesandbox.io/s/delicate-morning-f1cd1q?file=/src/index.tsx

Yes, sorry, I meant Slider. > I would assume the parent component should basically grow as the content I was also thinking about simply shorting the number but sometimes I...

With React 19 beta it looks like react-dom is now MUCH more lightweight (4kb gzipped in react-dom@beta compared to 42kb gzipped in [email protected]) according to bundlephobia. Can anyone shed some...

Well I wanted to implement this in my current project and I think after spending a few hours trying I can leave my feedback here. TLDR; too many limitations and...

@styfle AWS gives you more CPU power proportionally to allocated RAM so I believe some of my endpoints would perform much faster with >3008. For example, I'm working with an...

Short answer is: no. Author would ignore pull requests on GitHub and collaboration requests in Discord and would never consider transfering the ownership. I assume he just wants to take...

> Hi @VermilionB Check if main the module is connected, add the `NestjsFormDataModule` to your `BeatsModule` in `imports` section. Details in [doc](https://github.com/dmitriy-nz/nestjs-form-data#installation): Docs says it needs to be imported on...