Alexandre Philibert

Results 4 comments of Alexandre Philibert

@blevine seems to be right., I did find this commit https://github.com/prisma/prisma/commit/c94f0e91bc0e87e4765a67dddd40a36251faae87 where `idFields` has been renamed to `primaryKey` For the people looking for a quick fix : - Clone this...

I got around this issue by using ES6 dynamic imports : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#dynamic_imports Example: ```typescript const ref = useRef(null); useEffect(() => { // Dynamically import qr-code-styling only client-side if (typeof window...

You can check this table to see what characters are allowed in each mode : https://en.wikipedia.org/wiki/QR_code#Storage The Numeric and Alphanumeric modes do not allow the character "h", I am guessing...

Would love for this to be merged. I have been using sqlx with these changes for some time as it is a feature I find really useful.