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 2b31921 commit d2200f7Copy full SHA for d2200f7
src/app/(main)/resources/[category]/docs-section.tsx
@@ -54,7 +54,7 @@ export function DocsSection({
54
</Button>
55
</header>
56
57
- {gettingStarted && (
+ {gettingStarted.length > 0 && (
58
<>
59
<h3 className="typography-h3">Getting Started</h3>
60
<ul className="grid grid-cols-1 gap-6 md:grid-cols-2">
@@ -71,7 +71,7 @@ export function DocsSection({
71
</ul>
72
</>
73
)}
74
- {bestPractices && (
+ {bestPractices.length > 0 && (
75
76
<h3 className="typography-h3">Best Practices</h3>
77
0 commit comments