Error: backingFormData.forEach is not a function

anyone else seeing this when trying to use new nextjs server actions? Error: backingFormData.forEach is not a function
export default function Home() {
async function test() {
'use server'
console.log('test')
}
return (
<form action={test}>
<button>test</button>
</form>
)
}
export default function Home() {
async function test() {
'use server'
console.log('test')
}
return (
<form action={test}>
<button>test</button>
</form>
)
}
this is all I've changed from create-react-app@latest
1 Reply
fasm
fasm13mo ago
I had to update node to v20