Replace "not enabled" with "disabled"

This commit is contained in:
Jip Fr
2024-01-10 21:06:10 +01:00
parent f11b33fef4
commit 2905f0048f
2 changed files with 2 additions and 2 deletions

View File

@@ -96,8 +96,8 @@
.button-container p { .button-container p {
color: #4A4863; color: #4A4863;
text-align: center; text-align: center;
max-width: 180px;
font-size: 16px; font-size: 16px;
margin-top: 1rem;
} }
.button-container strong { .button-container strong {

View File

@@ -35,7 +35,7 @@ export function ToggleButton(props: ToggleButtonProps) {
</button> </button>
</div> </div>
<p> <p>
Extension{props.active ? '' : ' not'} enabled on <strong>movie-web.app</strong> Extension {props.active ? 'enabled' : 'disabled'} <br /> on <strong>movie-web.app</strong>
</p> </p>
</div> </div>
); );