From 2a20f7d18ce8b153575f770d3e5e89c458ecd852 Mon Sep 17 00:00:00 2001 From: Andrew Jiang Date: Mon, 10 Jun 2024 18:42:48 -0400 Subject: [PATCH] fix import --- packages/ui/app/src/next-app/utils/getSeoProp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/app/src/next-app/utils/getSeoProp.ts b/packages/ui/app/src/next-app/utils/getSeoProp.ts index a5d3aa8cb5..5cde5d7f86 100644 --- a/packages/ui/app/src/next-app/utils/getSeoProp.ts +++ b/packages/ui/app/src/next-app/utils/getSeoProp.ts @@ -1,10 +1,10 @@ import { APIV1Read, DocsV1Read, FernNavigation } from "@fern-api/fdr-sdk"; import { visitDiscriminatedUnion } from "@fern-ui/core-utils"; +import type { DefaultSeoProps, LinkTag, MetaTag, NextSeoProps } from "@fern-ui/next-seo"; import grayMatter from "gray-matter"; import { trim } from "lodash-es"; import { fromMarkdown } from "mdast-util-from-markdown"; import { toHast } from "mdast-util-to-hast"; -import type { DefaultSeoProps, LinkTag, MetaTag, NextSeoProps } from "next-seo/lib/types"; import { visit } from "unist-util-visit"; import { stringHasMarkdown } from "../../mdx/common/util"; import { FernDocsFrontmatter } from "../../mdx/mdx";