This commit is contained in:
expdsn 2025-02-24 23:25:40 +08:00
parent 05801af8a2
commit 43bcc30663
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ export default function Page() {
dataIndex: "icon",
render: (_, item) => (
<>
<Image width={70} src={item.icon?.startsWith('https') ? item.icon : PICTURE_PREFIX + item.icon} width={70} ></Image>
<Image width={70} src={item.icon?.startsWith('https') ? item.icon : PICTURE_PREFIX + item.icon} ></Image>
</>
)
},