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>
    )
}

this is all I've changed from create-react-app@latest
Was this page helpful?