瀏覽代碼

Add link-primary

Shun Miyazawa 1 年之前
父節點
當前提交
cb45bfc382
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      apps/app/src/features/openai/chat/components/AiChatModal/MessageCard.tsx

+ 1 - 1
apps/app/src/features/openai/chat/components/AiChatModal/MessageCard.tsx

@@ -33,7 +33,7 @@ const NextLinkWrapper = (props: LinkProps & {children: string, href: string}): J
   }, [closeRagSearchModal]);
 
   return (
-    <Link {...props} onClick={onClick} prefetch={false} className="">
+    <Link {...props} onClick={onClick} prefetch={false} className="link-primary">
       {props.children}
     </Link>
   );