Leonardo E. Dominguez
Leonardo E. Dominguez
For the record, the controlled selection is still broken in 0.63.3.
I'm in need of this feature right now. I'm using Next.js and I'd love to throw a `redirect` error on the protected route procedure to redirect users to the sign...
This would be so useful with server components. I'm using Next.js and I'd love to be able to throw/redirect users to the sign in page when using a protected procedure....
Yesss! This is the missing piece to make tRPC work seamlessly with server components.
Yeah, I think that your hunch is right, I agree with you in both cases—actions and server components, specially in actions, where I think the DX could be improved a...
Another exploration: ```typescript const data = await api.auth .signUp({ email: formData.get("email") as string, firstName: formData.get("firstName") as string, lastName: formData.get("lastName") as string, password: formData.get("password") as string, }) .onSuccess((data) => { //...
Oooh that's even better. I really like it! Also, are you gonna be able to use that action inside client components as well? You know that there's the limitation that...
I'm experiencing the same problem on Android, it's working well on iOS. Does anyone have a workaround? **Edit:** Found a workaround, on your `TouchableOpacity` element, pass an empty function to...
> @willxy you need to add the icons via android studio In Android Studio, right-click on the “drawable” folder and select “New” » “Vector Asset”. This kinda worked for me...