Skip to content

Commit b5e56e7

Browse files
committed
fix(cannon): remove standalone: true
1 parent c76ce54 commit b5e56e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libs/cannon/debug/src/lib/debug.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const defaultOptions: NgtcDebugInputs = {
3333
impl: CannonDebugger,
3434
};
3535

36-
@Directive({ selector: 'ngtc-physics[debug]', standalone: true })
36+
@Directive({ selector: 'ngtc-physics[debug]' })
3737
export class NgtcDebug {
3838
private store = injectStore();
3939
private physics = inject(NgtcPhysics);

libs/cannon/src/lib/physics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ type NgtsPhysicsUpdatableOptions = Extract<
9999
'gravity' | 'iterations' | 'tolerance' | 'broadphase' | 'axisIndex'
100100
>;
101101

102-
@Directive({ selector: 'ngtc-physics', standalone: true })
102+
@Directive({ selector: 'ngtc-physics' })
103103
export class NgtcPhysics {
104104
private store = injectStore();
105105

0 commit comments

Comments
 (0)