fix: add package feature labels

This commit is contained in:
Codex Agent
2026-01-12 12:32:43 +01:00
parent 1ddabe4f0e
commit 9d737cd743
3 changed files with 13 additions and 1 deletions

View File

@@ -392,7 +392,7 @@ function PackageShopCompareView({
</Text>
);
} else if (row.type === 'feature') {
const enabled = Boolean(entry.pkg.features?.[row.featureKey]);
const enabled = getEnabledPackageFeatures(entry.pkg).includes(row.featureKey);
content = (
<XStack alignItems="center" space="$1.5">
{enabled ? (