We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbcc53d commit 291375bCopy full SHA for 291375b
components/cards/project/index.tsx
@@ -61,7 +61,7 @@ export function ProjectCard({ project }: { project: (typeof PROJECTS)[0] }) {
61
</div>
62
63
64
- ) : (
+ ) : links ? (
65
<div className="space-y-1.5">
66
<div className="text-xs text-gray-600 dark:text-gray-400">Links</div>
67
<div className="flex flex-col items-start gap-0.5 sm:flex-row sm:items-center sm:gap-1.5">
@@ -79,7 +79,7 @@ export function ProjectCard({ project }: { project: (typeof PROJECTS)[0] }) {
79
))}
80
81
82
- )}
+ ) : null}
83
84
<div className="text-xs text-gray-600 dark:text-gray-400">Stack</div>
85
<div className="flex h-6 flex-wrap items-center gap-1.5">
0 commit comments