Skip to content

Commit

Permalink
docs(component): remove redundant standalone flag (#4625)
Browse files Browse the repository at this point in the history
  • Loading branch information
markostanimirovic authored Dec 10, 2024
1 parent c24cb33 commit e2cca61
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion modules/component/src/let/let.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ export interface LetViewContext<PO> {
* @publicApi
*/
@Directive({
standalone: true,
selector: '[ngrxLet]',
providers: [RenderScheduler],
})
Expand Down
1 change: 0 additions & 1 deletion modules/component/src/push/push.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ type PushPipeResult<PO> = PotentialObservableResult<PO, undefined>;
* @publicApi
*/
@Pipe({
standalone: true,
name: 'ngrxPush',
pure: false,
})
Expand Down
1 change: 0 additions & 1 deletion projects/ngrx.io/content/guide/component/let.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { LetDirective } from '@ngrx/component';

@Component({
// ... other metadata
standalone: true,
imports: [
// ... other imports
LetDirective,
Expand Down
1 change: 0 additions & 1 deletion projects/ngrx.io/content/guide/component/push.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import { PushPipe } from '@ngrx/component';

@Component({
// ... other metadata
standalone: true,
imports: [
// ... other imports
PushPipe,
Expand Down

0 comments on commit e2cca61

Please sign in to comment.