Thomas Ghysels

Results 156 comments of Thomas Ghysels

It kind of is aesthetics, no? Maintainability wise I think of these arguments: - Export groups add useless boilerplate as most files have only one export - Separating implementation and...

Hi, encountered this too. Workaround is to put `use client` above the comment. [prettier-plugin-organize-imports](https://www.npmjs.com/package/prettier-plugin-organize-imports) seems to handle this fine and also removes unused imports.

@antokhio ec levels aren't working because of this typo: ```diff - const matrix = useMemo(() => getMatrix(url), EcLevels[level], [url, level]); + const matrix = useMemo(() => getMatrix(url, EcLevels[level]), [url, level]);...

Was also looking for it and found this one: https://hub.docker.com/r/andrewgosselin/tunnelmole-server but it doesn't work. So I made this: https://hub.docker.com/r/thgh/tunnelmole 🎉

You could look in the source code or the [tests](https://github.com/thgh/payload-plugin-oauth/blob/main/test/integration.test.ts#L19) to see if the callback uri is constructed in the same way.

I added several tests and changed the fix to something simpler. Also fixed the github action 😉