Skip to content

Commit

Permalink
updating pretier
Browse files Browse the repository at this point in the history
  • Loading branch information
shameerrehman committed Aug 29, 2023
1 parent f4dc7a9 commit 6b4d336
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"ng-packagr": "^14.1.0",
"ngx-build-plus": "14",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.2",
"prettier": "^3.0.3",
"primeicons": "^6.0.1",
"typescript": "~4.7.2"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class ContrastComponent extends AccessibilityComponent {
this.currentState = super.changeState(
this.currentState,
"astralAccessibility_contrastState",
this.states.length
this.states.length,
);

this._runStateLogic();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class LineHeightComponent extends AccessibilityComponent {
this.currentState = super.changeState(
this.currentState,
"astralAccessibility_lineHeightState",
this.states.length
this.states.length,
);

this._runStateLogic();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class SaturateComponent extends AccessibilityComponent {
this.currentState = super.changeState(
this.currentState,
"astralAccessibility_saturateState",
this.states.length
this.states.length,
);

this._runStateLogic();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export class ScreenMaskComponent extends AccessibilityComponent {
this.currentState = super.changeState(
this.currentState,
"astralAccessibility_screenMaskState",
this.states.length
this.states.length,
);

this._runStateLogic();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export class ScreenReaderComponent extends AccessibilityComponent {
this.currentState = super.changeState(
this.currentState,
"astralAccessibility_screenReaderState",
this.states.length
this.states.length,
);

this._runStateLogic();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export class TextSizeComponent extends AccessibilityComponent {
this.currentState = super.changeState(
this.currentState,
"astralAccessibility_textSizeState",
this.states.length
this.states.length,
);

this._runStateLogic();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class TextSpacingComponent extends AccessibilityComponent {
this.currentState = super.changeState(
this.currentState,
"astralAccessibility_textSpacingState",
this.states.length
this.states.length,
);

this._runStateLogic();
Expand Down
2 changes: 1 addition & 1 deletion projects/astral-accessibility/src/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ declare const require: {
// First, initialize the Angular testing environment.
getTestBed().initTestEnvironment(
BrowserDynamicTestingModule,
platformBrowserDynamicTesting()
platformBrowserDynamicTesting(),
);

// Then we find all the tests.
Expand Down

0 comments on commit 6b4d336

Please sign in to comment.