Skip to content

Commit 4d89a7a

Browse files
committed
Make typescript overlords happy
1 parent 6569b0f commit 4d89a7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/[locale]/developers/tutorials.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ const TutorialPage = ({
288288
<Flex className="mb-4 max-w-full flex-wrap items-center gap-2">
289289
<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">
290290
{Object.entries(allTags).map(([tagName, tagCount], idx) => {
291-
if (tagCount <= 1) return null
291+
if ((tagCount as number) <= 1) return null
292292

293293
const name = `${tagName} (${tagCount})`
294294
const isActive = selectedTags.includes(tagName)

0 commit comments

Comments
 (0)