fix linting in js

This commit is contained in:
Arthur Lu
2022-11-18 07:56:07 +00:00
parent 89b7319dd8
commit 3422f584f9
5 changed files with 20 additions and 20 deletions

View File

@@ -15,7 +15,7 @@ function setupDelete(){
deleteBtn.addEventListener("click", function(){
if(window.confirm("Are you sure you want to delete this entry?")){
deleteReviewFromStorage(currID);
sessionStorage.removeItem('currID');
sessionStorage.removeItem("currID");
window.location.assign("./index.html");
}
});