Skip to content

Commit 3c3202a

Browse files
authored
Merge pull request #180 from sonderformat-llc/fix/findings-in-pr-149
fix: prettier error
2 parents 940c7cb + a873d70 commit 3c3202a

File tree

8 files changed

+16
-9
lines changed

8 files changed

+16
-9
lines changed

packages/sdk-angular/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ compliant identity server.
5757

5858
## Getting Started
5959

60-
If you are new to Angular development, you may want to start with the Quickstart guide. If you are already familiar with Angular development, skip to the Configuration section.
60+
If you are new to Angular development, you may want to start with the Quickstart guide. If you are already familiar with Angular development, skip to the Installation section.
6161

6262
### Quickstart
6363

packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fa-button.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
padding: 16px 16px 13px 16px;
33
border-radius: 8px;
44
background-color: #083b94;
5-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
5+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
6+
Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
67
font-size: 18px;
78
font-weight: 600;
89
text-align: center;
@@ -13,4 +14,4 @@
1314
}
1415

1516
width: 400px;
16-
}
17+
}

packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-login.button/fusion-auth-login-button.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { FusionAuthService } from '../../fusion-auth.service';
44
@Component({
55
selector: 'fa-login',
66
templateUrl: './fusion-auth-login-button.component.html',
7-
styleUrls: ['../fa-button.scss', './fusion-auth-login-button.component.scss']
7+
styleUrls: ['../fa-button.scss', './fusion-auth-login-button.component.scss'],
88
})
99
export class FusionAuthLoginButtonComponent {
1010
@Input() state: string | undefined;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<button class="fa-button" (click)="logout()">
22
<span>Logout</span>
3-
</button>
3+
</button>

packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-logout.button/fusion-auth-logout-button.component.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ import { FusionAuthService } from '../../fusion-auth.service';
44
@Component({
55
selector: 'fa-logout',
66
templateUrl: './fusion-auth-logout-button.component.html',
7-
styleUrls: ['../fa-button.scss', './fusion-auth-logout-button.component.scss']
7+
styleUrls: [
8+
'../fa-button.scss',
9+
'./fusion-auth-logout-button.component.scss',
10+
],
811
})
912
export class FusionAuthLogoutButtonComponent {
1013
constructor(private fusionAuth: FusionAuthService) {}

packages/sdk-angular/projects/fusionauth-angular-sdk/src/lib/components/fusionauth-register.button/fusion-auth-register-button.component.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ import { FusionAuthService } from '../../fusion-auth.service';
44
@Component({
55
selector: 'fa-register',
66
templateUrl: './fusion-auth-register-button.component.html',
7-
styleUrls: ['../fa-button.scss', './fusion-auth-register-button.component.scss']
7+
styleUrls: [
8+
'../fa-button.scss',
9+
'./fusion-auth-register-button.component.scss',
10+
],
811
})
912
export class FusionAuthRegisterButtonComponent {
1013
@Input() state: string | undefined;

packages/sdk-react/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ compliant identity server.
6161

6262
## Getting Started
6363

64-
If you are new to React development, you may want to start with the Quickstart guide. If you are already familiar with React development, skip to the Configuration section.
64+
If you are new to React development, you may want to start with the Quickstart guide. If you are already familiar with React development, skip to the Installation section.
6565

6666
### Quickstart
6767

packages/sdk-vue/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ compliant identity server.
6161

6262
## Getting Started
6363

64-
If you are new to Vue development, you may want to start with the Quickstart guide. If you are already familiar with Vue development, skip to the Configuration section.
64+
If you are new to Vue development, you may want to start with the Quickstart guide. If you are already familiar with Vue development, skip to the Installation section.
6565

6666
### Quickstart
6767

0 commit comments

Comments
 (0)