Kayvan Arianpour
Kayvan Arianpour
In the document is say that "Interceptor automatically adds req and req.user (as user) to additional data." but it does not unless we say to do: ``` new RavenInterceptor({ user:...
In NextJS if the library imports a css, the build fails. So it is better to let the user to import the css. As this is a breaking change, we...
Is there a way to generate the type for nesting queries? ``` const q1 = sql`select * from my_table`; const q2 = sql` select q1.id, q1.my_col from (${q1}) q1 `;...
In the document there is an example as follow: ``` .onConflict('name').doUpdate('age') ``` but actually it should be: ``` .onConflict('name').doUpdate(['age']) ``` do I miss a thing?
https://github.com/rpearce/react-medium-image-zoom/blob/4ad2a9ceebdbdf247f388c69190f07b90cfa4d71/source/Controlled.tsx#L260 here we need to preventDefault, otherwise it causes un expected behaviour if the zoom component it self is inside a dialog.