Skip to content

Commit

Permalink
refactor: seo props
Browse files Browse the repository at this point in the history
  • Loading branch information
hyesungoh committed May 9, 2023
1 parent 410e439 commit fc52809
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/blog/src/components/SEO/SEO.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import { authorName, defaultMetaBackground } from 'core/constants';
import { blogDescription, blogName, blogUrl } from '../../../_config';

interface Props {
title?: string | undefined;
description?: string | undefined;
ogImage?: string | null;
title?: string;
description?: string;
ogImage?: string;
}

function SEO({ title, description, ogImage }: Props) {
Expand Down

0 comments on commit fc52809

Please sign in to comment.