Jakub Suchenek

Results 10 comments of Jakub Suchenek

It is possible to explicitly disable it [^1] in `.yarnrc` file. [^2] [^1]: https://classic.yarnpkg.com/lang/en/docs/workspaces/#toc-tips-tricks [^2]: https://classic.yarnpkg.com/lang/en/docs/yarnrc/

Error still exists: ```js TypeError: Cannot read properties of undefined (reading 'ComponentDispatch') at plugin (betterdiscord://plugins/SendTimestamps.plugin.js:91:91) at eval (betterdiscord://plugins/SendTimestamps.plugin.js:887:22) at eval (betterdiscord://plugins/SendTimestamps.plugin.js:888:13) at eval (betterdiscord://plugins/SendTimestamps.plugin.js:889:3) at M.requireAddon (betterdiscord/renderer.js:4:35818) at M.loadAddon (betterdiscord/renderer.js:4:8323)...

I have the same issue. Adding `302` response didn't work. (Probably because I can see "Request failed with status code 400".) I'm using Nginx Proxy Manager on Docker within same...

I'm facing the same issue. Full error: ``` [next-auth][error][SIGNIN_OAUTH_ERROR] https://next-auth.js.org/errors#signin_oauth_error outgoing request timed out after 3500ms { error: { message: 'outgoing request timed out after 3500ms', stack: 'RPError: outgoing request...

Issue still exists. Installed `ohmyzsh` and `keychain` on a fresh Fedora 43, and it spits out error about `--agents is deprecated`.

Sorry, forgot to include. ``` $ keychain --version * keychain 2.9.2 ~ http://www.funtoo.org/Funtoo:Keychain Copyright 2009-2025 Daniel Robbins, Funtoo Solutions, Inc; lockfile() Copyright 2009 Parallels, Inc. Copyright 2007 Aron Griffis; Copyright...

```sh $ keychain --version 2>&1 | head -n 2 | tail -n 1 | cut -d ' ' -f 4 ~ ```

I've found an interesting thing. Using a directory mount causes the error. ```yaml # This doesn't work volumes: - ./data:/app/data ``` Removing `volumes` makes the app start, as well as...

Best would be to make use of `PUID` and `PGID`.

Adding: ```yaml user: root ``` Fixes the issue. This is weird, as according to [docs](https://docs.docker.com/reference/compose-file/services/#user) the container should run as `root` by default. ```yaml volumes: - ./data:/app/data ``` New folder...