Revert "fix: fix duplicate app lose custom image" (#19995)

This commit is contained in:
crazywoola
2025-05-20 18:42:59 +08:00
committed by GitHub
parent c58678d84d
commit d35d854259
5 changed files with 7 additions and 19 deletions

View File

@ -24,7 +24,6 @@ export type DuplicateAppModalProps = {
onConfirm: (info: {
name: string
icon_type: AppIconType
icon_url?: string | null
icon: string
icon_background?: string | null
}) => Promise<void>
@ -64,7 +63,6 @@ const DuplicateAppModal = ({
name,
icon_type: appIcon.type,
icon: appIcon.type === 'emoji' ? appIcon.icon : appIcon.fileId,
icon_url: appIcon.type === 'image' ? appIcon.url : undefined,
icon_background: appIcon.type === 'emoji' ? appIcon.background : undefined,
})
onHide()