chore: fix merge

This commit is contained in:
martabal 2024-03-08 22:56:39 +01:00
parent 3297034cf5
commit 2a6e74d3d3
No known key found for this signature in database
GPG Key ID: C00196E3148A52BD

View File

@ -216,7 +216,7 @@
</script>
{#if shouldShowEditAlbumForm}
<FullScreenModal on:clickOutside={() => (shouldShowEditAlbumForm = false)}>
<FullScreenModal onClose={() => (shouldShowEditAlbumForm = false)}>
<EditAlbumForm
album={selectedAlbum}
on:editSuccess={() => successModifyAlbum()}
@ -275,8 +275,8 @@
<ConfirmDialogue
title="Delete Album"
confirmText="Delete"
on:confirm={deleteSelectedAlbum}
on:cancel={() => (albumToDelete = null)}
onConfirm={deleteSelectedAlbum}
onClose={() => (albumToDelete = null)}
>
<svelte:fragment slot="prompt">
<p>Are you sure you want to delete the album <b>{albumToDelete.albumName}</b>?</p>