#7717 do not show walletcore version

This commit is contained in:
Sebastian 2023-06-29 11:16:07 -03:00
parent 5695ae0a9f
commit 15a15942d2
No known key found for this signature in database
GPG Key ID: 173909D1A5F66069

View File

@ -210,17 +210,6 @@ export function SettingsView({
</LinkPrimary>
</div>
<Part
title={i18n.str`Web Extension`}
text={
<span>
{webexVersion.version}{" "}
<EnabledBySettings name="advanceMode">
{webexVersion.hash}
</EnabledBySettings>
</span>
}
/>
{coreVersion && (
<EnabledBySettings name="advanceMode">
<Part
@ -283,19 +272,17 @@ export function SettingsView({
<SubTitle>
<i18n.Translate>Version</i18n.Translate>
</SubTitle>
{coreVersion && (
<Part
title={i18n.str`Wallet Core`}
text={
<span>
{coreVersion.version}{" "}
<EnabledBySettings name="advanceMode">
{coreVersion.hash}
</EnabledBySettings>
</span>
}
/>
)}
<Part
title={i18n.str`Web Extension`}
text={
<span>
{webexVersion.version}{" "}
<EnabledBySettings name="advanceMode">
{webexVersion.hash}
</EnabledBySettings>
</span>
}
/>
</section>
</Fragment>
);