chore(web): remove unnused property (#10820)

This commit is contained in:
Jason Rasmussen
2024-07-03 16:41:17 -04:00
committed by GitHub
parent 4a481acca6
commit 04f0ac1aad
14 changed files with 3 additions and 26 deletions
@@ -340,7 +340,6 @@
const handleRemoveAlbum = async () => {
const isConfirmed = await dialogController.show({
id: 'remove-album',
prompt: $t('album_delete_confirmation', { values: { album: album.albumName } }),
});
@@ -31,7 +31,6 @@
const handleDeleteLink = async (id: string) => {
const isConfirmed = await dialogController.show({
id: 'delete-shared-link',
title: $t('delete_shared_link'),
prompt: $t('confirm_delete_shared_link'),
confirmText: $t('delete'),
@@ -36,7 +36,6 @@
const handleEmptyTrash = async () => {
const isConfirmed = await dialogController.show({
id: 'empty-trash',
prompt: $t('empty_trash_confirmation'),
});
@@ -62,7 +61,6 @@
const handleRestoreTrash = async () => {
const isConfirmed = await dialogController.show({
id: 'restore-trash',
prompt: $t('assets_restore_confirmation'),
});
@@ -268,7 +268,6 @@
}
const isConfirmedLibrary = await dialogController.show({
id: 'delete-library',
prompt: $t('admin.confirm_delete_library', { values: { library: library.name } }),
});
@@ -281,7 +280,6 @@
deleteAssetCount = totalCount[index];
const isConfirmedLibraryAssetCount = await dialogController.show({
id: 'delete-library-assets',
prompt: $t('admin.confirm_delete_library_assets', { values: { count: deleteAssetCount } }),
});