(product: ProductT)
| 18 | const { isFPT } = useMainContext() |
| 19 | |
| 20 | function href(product: ProductT) { |
| 21 | return `${!product.external ? `/${router.locale}` : ''}${ |
| 22 | product.versions?.includes(currentVersion) && !isFPT |
| 23 | ? `/${currentVersion}/${product.id}` |
| 24 | : product.href |
| 25 | }` |
| 26 | } |
| 27 | |
| 28 | const groupIcon = { |
| 29 | height: '22px', |
no outgoing calls
no test coverage detected