Skip to content

Commit 73fcdd5

Browse files
committed
Unnecessary punctuation point in the confirmation prompt #212
1 parent 9914ea8 commit 73fcdd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Albums/AlbumsGallery.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const AlbumsGallery: React.FC = () => {
3939
return;
4040
}
4141

42-
if (confirm(`Are you sure you want to delete "${a.name}"?. The files in the albums will be still available in your feed?`)) {
42+
if (confirm(`Are you sure you want to delete "${a.name}"? The files in the albums will be still available in your feed?`)) {
4343
deleteAlbumMutation.mutate(id, {
4444
onSuccess: () => {
4545
toast.success(`The album "${a.name}" has been successfully deleted.`);

0 commit comments

Comments
 (0)