Skip to content

Commit

Permalink
fix nullish
Browse files Browse the repository at this point in the history
  • Loading branch information
jj committed May 9, 2021
1 parent fe960cc commit d973b65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/tag/[...slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const TagIndex = ({ cmsData }: TagIndexProps) => {

return (
<>
<SEO {...{ settings, title: meta_title ?? '', description: meta_description ?? '', seoImage }} />
<SEO {...{ settings, title: meta_title || '', description: meta_description || '', seoImage }} />
<Layout {...{ settings, bodyClass }} header={<HeaderTag {...{ settings, tag }} />}>
<PostView {...{ settings, posts }} />
</Layout>
Expand Down

1 comment on commit d973b65

@vercel
Copy link

@vercel vercel bot commented on d973b65 May 9, 2021

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.