不要乱给Image加fill

This commit is contained in:
2025-06-23 01:13:28 +08:00
parent 617602b1a6
commit b68a08e569

View File

@@ -66,7 +66,7 @@ export default function Blog() {
img: ({ src }) => (
<PhotoProvider className="w-full">
<PhotoView src={src as string}>
<Image src={src as string} fill alt="加载失败" />
<Image src={src as string} alt="加载失败" />
</PhotoView>
</PhotoProvider>
),