fix: run prettier on all file to avoid prettier issue inside PR

This commit is contained in:
thomas
2024-01-07 21:41:36 +01:00
parent 3bc793f6b3
commit c8b7c5d4a6
195 changed files with 575 additions and 452 deletions

View File

@@ -4,9 +4,10 @@ import { Component, Inject } from '@angular/core';
@Component({
selector: 'lib-home',
template: `Home component
template: `
Home component
<section class="flex gap-5 items-center">
<section class="flex items-center gap-5">
Authorization :
<button class="border p-2 " (click)="authorizeService.authorize()">
Authorize
@@ -17,11 +18,12 @@ import { Component, Inject } from '@angular/core';
(isAuthorized: {{ authorizeService.isAuthorized$ | async }})
</section>
<section>LoadedToken {{ token }}</section> `,
<section>LoadedToken {{ token }}</section>
`,
})
export class HomeComponent {
constructor(
public authorizeService: AuthorizationService,
@Inject(TOKEN) public token: string
@Inject(TOKEN) public token: string,
) {}
}