diff --git a/library/src/components/Tags.tsx b/library/src/components/Tags.tsx index 4107c53aa..3cc94fe7a 100644 --- a/library/src/components/Tags.tsx +++ b/library/src/components/Tags.tsx @@ -8,7 +8,7 @@ interface Props { } export const Tags: React.FunctionComponent = ({ tags }) => { - if (!tags || !tags.length) { + if (!tags?.length) { return null; }