Skip to content

Commit

Permalink
fix: allow undefined descriptions (#920)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstaley authored Mar 28, 2023
1 parent 534a28e commit 874e929
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/gentle-camels-judge.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hashicorp/react-logo-grid': patch
---

Allow undefined descriptions
2 changes: 1 addition & 1 deletion packages/logo-grid/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface LogoGridCompany {
/** Company name */
name: string
/** Short description of what the company offers */
description: string
description?: string
/** Optional integration page to link to. */
integrationPage?: {
/** Slug to link to, to be constructed into a `.com/integrations/{slug}` url. */
Expand Down

1 comment on commit 874e929

@vercel
Copy link

@vercel vercel bot commented on 874e929 Mar 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.