jpoep

Results 11 comments of jpoep

None of the solutions proposed here work for me either. I've recreated the issue in this repo: https://github.com/qelix/nuxt-vuex-module-decorators-repro Steps to reproduce: 1. Clone repo, run `yarn && yarn dev` 2....

Thanks a lot dude, I just tested it in my project and it works like a charm! Having to use default exports is kind of a letdown but it's still...

I'm having the same error. It occurs because `dialog_progress.dumper_state['outfile']` is nil. However, this only seems to be a following error, as checking if the value is nil before calling `File.join`(this...

I've tried the Pull Request, and though it did what it promised, it couldn't actually fix the problem. After a timeout, the script proceeds with the next conversation instead of...

Hey Tim, actually, my statement was wrong. There are no specific messages causing the timeouts, but rather a specific amount of messages. It always times out after exactly 3,000 messages...

Any chance you could make this fork public? I'd also really like to get a Linux build working Edit: Nevermind, I thought this was the sm64-autosplitter repo for whatever reason...

I fixed it by adding `blurhash` to `optimizeDevs` in my vite config. I also needed to add it to the `ssr.noExternal` array, even though I have it as a dev...

I'm having the same issue. Using `@typescript-eslint/eslint-plugin` and `@typescript-eslint/parser` @ versions `^6.21` works, but is only compatible with typescript up to `^5.3`. It's not optimal but at least fixes the...

Interesting, thanks for the update! Any idea who is responsible for publishing 0.21.10 on npm? I bet it's where 99% of people pull this library from and it's already been...

> Only workaround I could find is to catch `map.remove()` : > > ``` > try { > map.remove(); > } catch (e) {} > ``` This won't properly unmount...