Ada Boese
Ada Boese
@edmundhung For what it is worth, the whole route is wrapped in `ClientOnly`. ```ts import { ClientOnly } from 'remix-utils/client-only'; // ... const Route = () => { return (...
What other debugging information can I provide?
@edmundhung Is there any documentation? Been trying to understand how to migrate the past hour, but cannot wrap my head around. This is my current usage: ```tsx const Route =...
Also, I don't use hidden inputs. I just have a text input that can get updated externally.
That worked. Thank you!
How do I return non-field specific error? e.g. if authentication failed and I do not want to indicate if it was email or password that's wrong
Is there some workaround while this is being worked on? currently it seems I am blocked from using node-postgres with Google Cloud SQL.
My connection string looks as follows: ``` postgresql://postgres:[email protected]:5432/aimd?sslmode=require ``` What do I need to change to make this work? also getting `UNABLE_TO_VERIFY_LEAF_SIGNATURE` error
Workaround ```ts const findCommentNodes = (element: INode) => { const commentNodes: INode[] = []; for (const node of element.childNodes) { if (node.nodeType === Node.COMMENT_NODE) { commentNodes.push(node); } else { commentNodes.push(...findCommentNodes(node));...