We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8368d35 + 4d89a7a commit e351065Copy full SHA for e351065
src/pages/[locale]/developers/tutorials.tsx
@@ -288,6 +288,8 @@ const TutorialPage = ({
288
<Flex className="mb-4 max-w-full flex-wrap items-center gap-2">
289
<div className="flex w-full flex-wrap gap-2 lg:grid lg:grid-cols-3 lg:gap-4 xl:grid-cols-4 2xl:grid-cols-5">
290
{Object.entries(allTags).map(([tagName, tagCount], idx) => {
291
+ if ((tagCount as number) <= 1) return null
292
+
293
const name = `${tagName} (${tagCount})`
294
const isActive = selectedTags.includes(tagName)
295
return (
0 commit comments