Valentin
Valentin
There are new major Java releases every 6 months, which have different package identifiers, so I think the risk of keeping forever a stale `cacerts` file is limited, no?
I got a similar issue with `[email protected]` and `[email protected]`. Turns out it was because `skipLibCheck` was set to `true` in my project `tsconfig.json` file.
Sorry, I wasn't clear in my previous message but it definitely fixed the issue for me. @smtrd3 Can you try this solution?
Hello, I decided to check if this issue was still present in the latest version of Insomnia and I'm happy to report that it is no longer occurring 🙂
Having the same issue with latest version of `docusaurus-lunr-search`. I reverted to `v2.1.15` and it works properly with this version.
@Lullabyq This is with the latest stable version of Docusaurus: v2.3.1.
@Lullabyq Thank you, I reran [the swizzling command from the docs](https://github.com/praveenn77/docusaurus-lunr-search#how-to-use-) and now the URLs are correct! @evaera @efectn Can you try re-running the swizzling command from the docs? ```sh...
For anyone using [pnpm](https://pnpm.io/), put this in your `package.json` file until 2.2.7 is released: ```json { "pnpm": { "overrides": { "nwsapi": "2.2.5" } } } ```
Same problem in a devcontainer. I solved it by adding this line in the `Dockerfile`: ```dockerfile RUN SHELL=/bin/bash pnpm setup ``` (As advised by the `pnpm root -g` command result)
I found a workaround: ```typescript const fixTooltipModifier = { name: 'offset', enabled: true, phase: 'main', options: { offset: [0, 6] }, } as OffsetModifier; function MyTooltip() { return My Tooltip...