Skills Up

Results 10 comments of Skills Up

Just curious, in your opinion, would async version provide a performance improvement? Specially for listing options, and booking a selected option among the retrieved list.

The reason I was looking for an improvement is because I've to query two fares: public fares and private fares, and then show them side by side. Since there is...

Also, I've tried the following alternative for populating `defaultValues` object: ``` const defaultValues = {}; for (let key of Object.keys(fields)) { defaultValues[key] = values ? values[key] : getDefaultValueForType(fields[key]); } ```...

Further, if I try to use setDefaults, like: ``` if (values) { setDefaults(values); } ``` then it results in `Too many rerenders`; whereas, wrapping it in a `useEffect` results in...

I'm planning to use this package for a client project. I'll most likely build the UI in NextJS. However, I'm not sure whether the client will allow me to distribute...

@nelsou I didn't. So, moved the action to server side instead. Simply created a link which will return the CSV.

I've also bumped it in my local fork, and it is working fine with Laravel. On Wed, 6 Dec 2023, 10:03 pm puggan, ***@***.***> wrote: > I see that Mustafagoda...

I'm facing the same issue in v2.4, and downgrading to v2.1 didn't help

Tried everything on this thread, still getting the issue: ``` File "/miniconda3/lib/python3.12/site-packages/gemini/client.py", line 160, in _set_sid_and_nonce raise ValueError( ValueError: Failed to parse SNlM0e nonce value from the response. Refresh the...