Skip to content

Commit

Permalink
chore: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
yuskhan committed Jul 29, 2024
1 parent 988a0b1 commit 6ca8858
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
class="icon action-icon "
[ngClass]="{
inactive: states[currentState] == base,
active: states[currentState] != base
active: states[currentState] != base,
}"
>
<svg
Expand Down Expand Up @@ -67,7 +67,7 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
<div
class="dot"
[ngClass]="{
active: states[currentState] === 'Dark High Contrast'
active: states[currentState] === 'Dark High Contrast',
}"
></div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
class="icon action-icon"
[ngClass]="{
inactive: states[currentState] == base,
active: states[currentState] != base
active: states[currentState] != base,
}"
>
<svg
Expand Down Expand Up @@ -49,7 +49,7 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
<div
class="dot"
[ngClass]="{
active: states[currentState] === 'Moderate Height'
active: states[currentState] === 'Moderate Height',
}"
></div>
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
class="icon action-icon "
[ngClass]="{
inactive: states[currentState] == base,
active: states[currentState] != base
active: states[currentState] != base,
}"
>
<svg
Expand Down Expand Up @@ -61,13 +61,13 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
<div
class="dot"
[ngClass]="{
active: states[currentState] === 'Low Saturation'
active: states[currentState] === 'Low Saturation',
}"
></div>
<div
class="dot"
[ngClass]="{
active: states[currentState] === 'High Saturation'
active: states[currentState] === 'High Saturation',
}"
></div>
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
class="icon action-icon"
[ngClass]="{
inactive: states[currentState] == base,
active: states[currentState] != base
active: states[currentState] != base,
}"
>
<svg
Expand Down Expand Up @@ -54,7 +54,7 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
<div
class="dot"
[ngClass]="{
active: states[currentState] === 'Reading Mask'
active: states[currentState] === 'Reading Mask',
}"
></div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
(click)="nextState()"
[ngClass]="{
'in-use': states[currentState] != base,
'disabled-button': !synthesisAvailable
'disabled-button': !synthesisAvailable,
}"
>
<div class="title">
Expand All @@ -21,7 +21,7 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
[ngClass]="{
inactive: states[currentState] == base,
active: states[currentState] != base,
disabled: !synthesisAvailable
disabled: !synthesisAvailable,
}"
>
<svg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
class="icon action-icon "
[ngClass]="{
inactive: states[currentState] == base,
active: states[currentState] != base
active: states[currentState] != base,
}"
>
<svg
Expand Down Expand Up @@ -60,7 +60,7 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
<div
class="dot"
[ngClass]="{
active: states[currentState] === 'Extra Large Text'
active: states[currentState] === 'Extra Large Text',
}"
></div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
class="icon action-icon"
[ngClass]="{
inactive: states[currentState] == base,
active: states[currentState] != base
active: states[currentState] != base,
}"
>
<svg
Expand Down Expand Up @@ -56,7 +56,7 @@ import { AstralCheckmarkSvgComponent } from "../util/astral-checksvg.component";
<div
class="dot"
[ngClass]="{
active: states[currentState] === 'Moderate Spacing'
active: states[currentState] === 'Moderate Spacing',
}"
></div>
<div
Expand Down

0 comments on commit 6ca8858

Please sign in to comment.