use album icon for unloaded image (#1136)

This commit is contained in:
jeffvli
2025-12-08 22:31:30 -08:00
parent a19a6815e9
commit 3d07290231
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -154,7 +154,7 @@ export const AppIcon = {
edit: LuPencilLine,
ellipsisHorizontal: LuEllipsis,
ellipsisVertical: LuEllipsisVertical,
emptyImage: LuImageOff,
emptyImage: LuDisc3,
error: LuShieldAlert,
externalLink: LuExternalLink,
favorite: LuHeart,
+1 -1
View File
@@ -134,7 +134,7 @@ export function ImageLoader({ className }: ImageLoaderProps) {
export function ImageUnloader({ className }: ImageUnloaderProps) {
return (
<div className={clsx(styles.unloader, className)}>
<Icon color="default" icon="emptyImage" size="xl" />
<Icon color="default" icon="emptyImage" size="25%" />
</div>
);
}