Unexpected {{Partial}} Usage

Please i’m have a template lint error with this line of my code

{{partial "-sales-table-header"}}

Ember 3.4.1 Ember Cli 3.4.1 Ember Template lint 1.0.0-beta.1

That is the no-partial lint rule.

You can customize the lint rules if you don’t want to refactor your code right now.

Or refactor to not use partial. Components can do everything partials can, in a way that is much more optimizable and readable.

@ef4, thanks for the direction. I really appreciate.