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.
1 parent 6569b0f commit 4d89a7aCopy full SHA for 4d89a7a
src/pages/[locale]/developers/tutorials.tsx
@@ -288,7 +288,7 @@ 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 <= 1) return null
+ if ((tagCount as number) <= 1) return null
292
293
const name = `${tagName} (${tagCount})`
294
const isActive = selectedTags.includes(tagName)
0 commit comments