refactor(core): remove todo

This TODO hinted that we also needed to remove a g3 patch.
This commit is contained in:
Matthieu Riegler 2026-03-25 00:37:13 +01:00 committed by Leon Senft
parent 16adbbf423
commit cf3b7fe489

View file

@ -668,8 +668,6 @@ export interface Component extends Directive {
*/
export const Component: ComponentDecorator = makeDecorator(
'Component',
// TODO(jeanmeche): remove the ts-ignore when OnPush is the default
// @ts-ignore
(c: Component = {}) => ({changeDetection: ChangeDetectionStrategy.Eager, ...c}),
Directive,
undefined,