不要乱给Image加fill

This commit is contained in:
2025-06-23 01:13:28 +08:00
parent f82fc0fb77
commit 3e156d3f5d

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>
),