fix(frontend): Turbopack about page + remove hover on web search/citations

- About: use aboutMarkdown from about-content.ts instead of raw-loader for
  about.md (fixes Turbopack 'Cannot find module raw-loader')
- Web search: remove Tooltip from web_search and web_fetch result links
- Citations: remove HoverCard from CitationLink so no hover popup on badges

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
LofiSu
2026-02-09 03:23:02 +08:00
parent cebf2599c9
commit 842c4ecac0
4 changed files with 79 additions and 51 deletions
@@ -2,8 +2,8 @@
import { Streamdown } from "streamdown";
import about from "./about.md";
import { aboutMarkdown } from "./about-content";
export function AboutSettingsPage() {
return <Streamdown>{about}</Streamdown>;
return <Streamdown>{aboutMarkdown}</Streamdown>;
}