🏷️ fix type errors

This commit is contained in:
Fred KISSIE
2026-02-11 04:34:53 +01:00
parent 59b8119fbd
commit 6d1665004b

View File

@@ -594,7 +594,8 @@ export default function GeneralPage() {
{isPaidUser {isPaidUser
? formatPostureValue( ? formatPostureValue(
client.posture client.posture
.biometricsEnabled .biometricsEnabled ===
true
) )
: "-"} : "-"}
</InfoSectionContent> </InfoSectionContent>
@@ -612,7 +613,8 @@ export default function GeneralPage() {
{isPaidUser {isPaidUser
? formatPostureValue( ? formatPostureValue(
client.posture client.posture
.diskEncrypted .diskEncrypted ===
true
) )
: "-"} : "-"}
</InfoSectionContent> </InfoSectionContent>
@@ -630,7 +632,8 @@ export default function GeneralPage() {
{isPaidUser {isPaidUser
? formatPostureValue( ? formatPostureValue(
client.posture client.posture
.firewallEnabled .firewallEnabled ===
true
) )
: "-"} : "-"}
</InfoSectionContent> </InfoSectionContent>
@@ -648,7 +651,8 @@ export default function GeneralPage() {
{isPaidUser {isPaidUser
? formatPostureValue( ? formatPostureValue(
client.posture client.posture
.autoUpdatesEnabled .autoUpdatesEnabled ===
true
) )
: "-"} : "-"}
</InfoSectionContent> </InfoSectionContent>
@@ -666,7 +670,8 @@ export default function GeneralPage() {
{isPaidUser {isPaidUser
? formatPostureValue( ? formatPostureValue(
client.posture client.posture
.tpmAvailable .tpmAvailable ===
true
) )
: "-"} : "-"}
</InfoSectionContent> </InfoSectionContent>
@@ -685,7 +690,8 @@ export default function GeneralPage() {
{isPaidUser {isPaidUser
? formatPostureValue( ? formatPostureValue(
client.posture client.posture
.windowsAntivirusEnabled .windowsAntivirusEnabled ===
true
) )
: "-"} : "-"}
</InfoSectionContent> </InfoSectionContent>
@@ -703,7 +709,8 @@ export default function GeneralPage() {
{isPaidUser {isPaidUser
? formatPostureValue( ? formatPostureValue(
client.posture client.posture
.macosSipEnabled .macosSipEnabled ===
true
) )
: "-"} : "-"}
</InfoSectionContent> </InfoSectionContent>
@@ -722,7 +729,8 @@ export default function GeneralPage() {
{isPaidUser {isPaidUser
? formatPostureValue( ? formatPostureValue(
client.posture client.posture
.macosGatekeeperEnabled .macosGatekeeperEnabled ===
true
) )
: "-"} : "-"}
</InfoSectionContent> </InfoSectionContent>
@@ -741,7 +749,8 @@ export default function GeneralPage() {
{isPaidUser {isPaidUser
? formatPostureValue( ? formatPostureValue(
client.posture client.posture
.macosFirewallStealthMode .macosFirewallStealthMode ===
true
) )
: "-"} : "-"}
</InfoSectionContent> </InfoSectionContent>
@@ -759,7 +768,8 @@ export default function GeneralPage() {
{isPaidUser {isPaidUser
? formatPostureValue( ? formatPostureValue(
client.posture client.posture
.linuxAppArmorEnabled .linuxAppArmorEnabled ===
true
) )
: "-"} : "-"}
</InfoSectionContent> </InfoSectionContent>
@@ -777,7 +787,8 @@ export default function GeneralPage() {
{isPaidUser {isPaidUser
? formatPostureValue( ? formatPostureValue(
client.posture client.posture
.linuxSELinuxEnabled .linuxSELinuxEnabled ===
true
) )
: "-"} : "-"}
</InfoSectionContent> </InfoSectionContent>