Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit dd66e0a

Browse files
committed
Fixed error type
1 parent ebfb13c commit dd66e0a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

__stories__/templates/blog-page.stories.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import {
55
BlogPageProps,
66
} from "../../src/components/design-system/templates/blog-page";
77
import { Paragraph } from "../../src/components/design-system/atoms/paragraph";
8+
import { OgPageType } from "../../src/logic/seo";
89

910
export const BlogPageStory: Story<BlogPageProps> = (args) => (
1011
<BlogPage {...args}>
@@ -17,7 +18,7 @@ BlogPageStory.args = {
1718
url: "http://localhost:8000/blog/",
1819
},
1920
author: "Fabrizio Duroni",
20-
ogPageType: "WebSite",
21+
ogPageType: OgPageType.WebSite,
2122
ogImage: "/a-photo.jpg",
2223
trackingCategory: "blog",
2324
};

0 commit comments

Comments
 (0)