docs: added product review guide (#11852)

* finish guide

* fix tags not showing correctly

* revert changes in prepare

* generate changes
This commit is contained in:
Shahed Nasser
2025-03-19 15:19:38 +02:00
committed by GitHub
parent 8385a5e34d
commit ee014e063e
14 changed files with 30436 additions and 12190 deletions

View File

@@ -46,11 +46,7 @@ const getIntersectionTags = (tags: string): Tag => {
return tagsToIntersect
.slice(1)
.every((otherTag) =>
otherTag.some(
(otherTagItem) =>
otherTagItem.title === tagItem.title &&
otherTagItem.path === tagItem.path
)
otherTag.some((otherTagItem) => otherTagItem.path === tagItem.path)
)
})
}