This is a...
What toolchain are you using for transpilation/bundling?
Environment
NodeJS Version: 10.16.3
Typescript Version: 3.5.3
Angular Version: 8.2.2
@angular-redux/store version: 10.0.0
@angular/cli version: (if applicable) 8.2.2
OS: Mac OS Mojave
Expected Behaviour:
Form should connect to redux, like so:
<form connect="myForm" [formGroup]="personalDetailsForm" (ngSubmit)="onSubmit(personalDetailsForm.value)"> 
Actual Behaviour:
I get this error:

When digging into the source I see this:

From what I can see there's a fix for this to use formGroup rather than form, here, but the source that I have doesn't seem to have this fix, so obviously I am getting an error as it's checking for form and not formGroup.
I am using the latest @angular-redux/forms package, v10.
Am I missing something really silly here?