diff --git a/src/react/honeypot.tsx b/src/react/honeypot.tsx index 527d669..0677ba9 100644 --- a/src/react/honeypot.tsx +++ b/src/react/honeypot.tsx @@ -8,8 +8,10 @@ const HoneypotContext = React.createContext({}); export function HoneypotInputs({ label = "Please leave this field blank", + nonce, }: { label?: string; + nonce?: string }): JSX.Element { let context = React.useContext(HoneypotContext); @@ -22,9 +24,10 @@ export function HoneypotInputs({ return (