Damon Blais

Results 100 comments of Damon Blais

+1 Please remove `prop-types` peer dependency. Tired of seeing the warning.

+1 does not work (tested with: YouTube Video) ```ts /** @type {import('unified').Plugin} */ // eslint-disable-next-line react/prop-types function YouTubeVideo({ id, children }: { id: string, children: ReactNode }) { return {children}...

Yeah... this results in the package failing in NextJS. Specifically, even with SSR disabled, two EditorJS components render, and this error is thrown.

> We just went through this as well: two components and a destroy error. > > In our case, it was only broken in React 18. Downgrading to 17 fixed...

To be fair, this is not the only extension that explodes when you give it react 18. One of the biggest changes, is the rendering mode. ReactDOM absolutely floods the...

Why not just expose the `API from @editorjs/editorjs` directly, any particular reason?

It makes me wonder why this repository even hides the editor JS API in the first place, it has gotten me in places where I've had to consider whether we...

`3LT45380MJ406793V` - Thank you again for putting up with my frantic issue-creation rate.

This does. One can no longer install `iris` cleanly. ``` go: finding module for package github.com/klauspost/compress/snappy ../../../../pkg/mod/github.com/kataras/iris/[email protected]/context/compress.go:14:2: module github.com/klauspost/compress@latest found (v1.12.1), but does not contain package github.com/klauspost/compress/snappy ```

Is there a concept of route priorities? If so, we would just register that with a lower priority. ```golang app.Any("/{asdf:path}", func(ctx iris.Context) { ctx.View("index.html") }) app.HandleDir("/", iris.Dir(Conf.Dir.Assets), iris.DirOptions{ ShowList: false,...