Ember CP validations action not firing

I am using ember bootstrap with cp validations on my form. I have the following form in a component and when I click submit, nothing happens. No console errors. Am I missing something?

{{#bs-form formLayout="vertical" class="bootstrap-form" novalidate=true model=model.customer onSubmit=(action "saveChanges") as |form|}}

Maybe my action should not be in the component? If I change model=model.customer to model=this then when I click the button the action fires in the component. What am I missing?

Seems like I was failing a validation but it was not telling me about it