Udbhav Sahai

Results 10 comments of Udbhav Sahai

Just to help this along, for the TS side of things, this is the implementation and error (I edited some stuff out, but by and large this is it): ```...

@nnmer Hey, I found that react-calendar-timeline is quite laggy. The lack of horizontal scrolling plus the dynamic re-rendering means that the end result doesn't appear very smooth. My guess is...

Just out of curiosity, the above 2 functions both toggle the colors as to what is detected as a weekend, right? Neither of those would allow me to change the...

Could use this feature! Thanks. As per the dev's [example](https://stephenchou1017.github.io/scheduler/#/locale) , it is possible to change the start day of the week to monday. However, after running the code in...

I figured it out! It can be done with this ``` constructor(props) { super(props); >>>> moment.locale("us", { >>>> week: { >>>> dow: 1 >>>> } >>>> }); let schedulerData =...

To extend this, I would also like a dynamic blocking prop - would be great if it could be tied to an ID. My use case is that I have...

Closing this since it's resolved. Many thanks @Andresbd

Is there a way to extend the client for pooled connections? I need to use a schema, but the existing type definitions does not accept a schema, unless I pass...

**Please read edit below** I kinda have the same problem here. ``` export const fetchAppsOfUsers = (source: any, { id }: FetchAppsOfUsersProps) => new Promise(async (resolve, reject) => { try...

Hey @alexarena, You could declare the return type of your response as ``` const rows = await prisma.$queryRaw(sqltag`SELECT current_user;`) ``` and you should be able to see the type definition...