Skip to content

Commit

Permalink
Apply linting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
builderio-bot committed Sep 4, 2024
1 parent cb68f66 commit eb7b7e9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 26 deletions.
6 changes: 1 addition & 5 deletions packages/sdks/output/angular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,7 @@ import { fetchOneEntry, type BuilderContent } from '@builder.io/sdk-angular';
selector: 'app-catchall',
template: `
<ng-container *ngIf="content; else notFound">
<content
[model]="model"
[content]="content"
[apiKey]="apiKey"
></content>
<content [model]="model" [content]="content" [apiKey]="apiKey"></content>
</ng-container>
<ng-template #notFound>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@ import { type BuilderContent } from '@builder.io/sdk-angular';
selector: 'app-announcement-bar',
template: `
<ng-container *ngIf="content; else notFound">
<content
[model]="model"
[content]="content"
[apiKey]="apiKey"
></content>
<content [model]="model" [content]="content" [apiKey]="apiKey"></content>
</ng-container>
<ng-template #notFound>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@ import { type BuilderContent } from '@builder.io/sdk-angular';
selector: 'app-catchall',
template: `
<ng-container *ngIf="content; else notFound">
<content
[model]="model"
[content]="content"
[apiKey]="apiKey"
></content>
<content [model]="model" [content]="content" [apiKey]="apiKey"></content>
</ng-container>
<ng-template #notFound>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@ import { fetchOneEntry, type BuilderContent } from '@builder.io/sdk-angular';
selector: 'app-announcement-bar',
template: `
<ng-container *ngIf="content; else notFound">
<content
[model]="model"
[content]="content"
[apiKey]="apiKey"
></content>
<content [model]="model" [content]="content" [apiKey]="apiKey"></content>
</ng-container>
<ng-template #notFound>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ import { fetchOneEntry, type BuilderContent } from '@builder.io/sdk-angular';
selector: 'app-catchall',
template: `
<ng-container *ngIf="content; else notFound">
<content
[model]="model"
[content]="content"
[apiKey]="apiKey"
></content>
<content [model]="model" [content]="content" [apiKey]="apiKey"></content>
</ng-container>
<ng-template #notFound>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ useMetadata({
},
angular: {
selector: 'content, content-variants',
}
},
});

type VariantsProviderProps = ContentVariantsPrps & {
Expand Down

0 comments on commit eb7b7e9

Please sign in to comment.