Dylan Grandmont

Results 7 comments of Dylan Grandmont

Looks like a duplicate of a fixed issue https://github.com/frontend-collective/react-image-lightbox/issues/171. **However** that fix has not been published yet. I ran into this issue as well today on the latest `npm` package....

Adding this flag when creating the document does not appear to remove this prompt ```ts new Document({ ... features: { updateFields: true, } }) ```

@Longchhun looks like I can't merge as I don't have write access but please feel free to merge this if you can

In case this helps increase the priority of this change, the corresponding type dependency for this library, https://www.npmjs.com/package/@types/snowflake-sdk is quite out of date. [For example, there are no typings for...

> somebody on my team actually pointed out this thread to me as a workaround: https://community.snowflake.com/s/question/0D50Z00007UwSeWSAV/transaction-mode-in-node-js-driver @kning that workaround does not appear to work with the node js driver. ```js...

> await conn.execute('BEGIN TRANSACTION;'); > await conn.execute('USE WAREHOUSE ...;'); > await conn.execute('USE DATABASE ...;'); > await conn.execute('COMMIT;'); That will certainly execute but those are four separate API calls (compared with...

In case anyone else stumbles across this github issue while trying to do the same thing, here is a small code snippet to help out. I spent over an hour...