Patryk Maron
Patryk Maron
I am using `classnames` with Tailwind CSS. Like you mentioned, dynamically creating classes won't work. But there is a workaround I have used: First I create a map, for instance...
So in your case, you would want to do something like: ``` const buttonTypeMap = new Map([ ["blue", "text-blue-400"], ["red", "text-red-400"], ["yellow", "text-yellow-400"], ]); const className = classnames( { [`${buttonTypeMap.get(buttonType!)}`]:...
@alexjtupper Very cool! Any thoughts of using the middleware to inject Authorisation Header into requests that we make to external APIs? Currently I have this proxy API route that handles...
Anyone had a chance to do this?
We are also using validateRequest. We get an POST when WhatsApp message comes in, it works perfectly fine when whatsapp message comes through, until it's an "reply" to an message...
> `instatouch user jennyfrancis23 -c 250 -t csv --session="sessionid=YOUR SESSIONID;ds_user_id=YOUR USERID"` Has this stopped working now?
Any ETA on this?
@nicktrn They are unpleasant, I was wondering if trigger.dev was going to come up with some solution for the payloads 😂 Our use case, is that we need to sync...
> I personally would stay away from those webhooks unless you really need to sync changes immediately. This is the conclusion I have arrived at! I will be doing an...