Skip to content

Commit

Permalink
chore: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jingsam committed Aug 26, 2024
1 parent 5290c75 commit 23b1744
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const ExtensionCard = ({ extension }: ExtensionCardProps) => {
)}

<div className={cn('flex h-full flex-col gap-y-3 py-3', X_PADDING)}>
<p className="text-sm text-foreground-light capitalize-sentence">{(extensionMeta || extension).comment}</p>
<p className="text-sm text-foreground-light capitalize-sentence">{(extensionMeta ?? extension).comment}</p>
<div className="flex items-center gap-x-2">
{extensionMeta?.github_url && (
<Button asChild type="default" icon={<Github />} className="rounded-full">
Expand Down
16 changes: 9 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 23b1744

Please sign in to comment.