Преглед на файлове

Update apps/app/src/features/openai/client/components/AiAssistant/AiAssistantSidebar/MessageCard/ReactMarkdownComponents/NextLinkWrapper.tsx

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Shun Miyazawa преди 10 месеца
родител
ревизия
21f966954e

+ 2 - 1
apps/app/src/features/openai/client/components/AiAssistant/AiAssistantSidebar/MessageCard/ReactMarkdownComponents/NextLinkWrapper.tsx

@@ -1,9 +1,10 @@
 
 import type { LinkProps } from 'next/link';
+import React from 'react';
 
 import { NextLink } from '~/components/ReactMarkdownComponents/NextLink';
 
-export const NextLinkWrapper = (props: LinkProps & {children: string, href: string}): JSX.Element => {
+export const NextLinkWrapper = (props: LinkProps & {children: React.ReactNode, href: string}): JSX.Element => {
   return (
     <NextLink href={props.href} className="link-primary">
       {props.children}