Skip to content

Commit

Permalink
fix(ui): Comment out confirmation prompt for delete actions in main.js
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlKho-Minerva committed Nov 3, 2024
1 parent 0d882f5 commit 3f2c294
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified app/medieval_todos.db
Binary file not shown.
2 changes: 1 addition & 1 deletion app/static/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ document
this.classList.contains("delete-list-form") ||
this.classList.contains("delete-item-form")
) {
if (!confirm("Are you sure you want to delete this?")) {
// if (!confirm("Are you sure you want to delete this?")) {
return;
}
}
Expand Down

0 comments on commit 3f2c294

Please sign in to comment.