only show checks for analysis elements explicitly in current package

This commit is contained in:
2025-09-10 06:31:39 +03:00
parent 7bc89f7c22
commit be33b892f5

View File

@@ -136,10 +136,10 @@ const ComparePackagesModal = async ({
{isIncludedInStandard && <CheckWithBackground />} {isIncludedInStandard && <CheckWithBackground />}
</TableCell> </TableCell>
<TableCell align="center" className="py-6"> <TableCell align="center" className="py-6">
{(isIncludedInStandard || isIncludedInStandardPlus) && <CheckWithBackground />} {isIncludedInStandardPlus && <CheckWithBackground />}
</TableCell> </TableCell>
<TableCell align="center" className="py-6"> <TableCell align="center" className="py-6">
{(isIncludedInStandard || isIncludedInStandardPlus || isIncludedInPremium) && <CheckWithBackground />} {isIncludedInPremium && <CheckWithBackground />}
</TableCell> </TableCell>
</TableRow> </TableRow>
); );