chore: upgrade dependencies

This commit is contained in:
xfy
2025-05-19 14:41:51 +08:00
parent fe51fa33c8
commit 7e9a7b616d
28 changed files with 1611 additions and 1743 deletions

View File

@ -18,7 +18,7 @@ const Paragraph = (props: HTMLAttributes<HTMLParagraphElement>) => {
if (typeof child.type !== 'object') return null;
const childType = child.type as ChildType;
if (!childType?.type) return null;
if (!child.props?.href) return null;
// if (!child.props?.href) return null;
const props = child.props as { href: string };
return props.href;
});