I am trying to create a payment form where people can pay but I keep getting this error.
document is not defined
I\'m using Next.js. Ple
To access the document in Next.js you need await the page render first then get it in a variable, like so:
const [_document, set_document] = React.useState(null) React.useEffect(() => { set_document(document) }, [])