diff --git a/js/admin.js b/js/admin.js index 435b454..74cc682 100644 --- a/js/admin.js +++ b/js/admin.js @@ -80,14 +80,6 @@ document.addEventListener('DOMContentLoaded', () => { }); function initEventListeners() { - const physicalCheckbox = document.getElementById('admin-physical-checkbox'); - if (physicalCheckbox) { - physicalCheckbox.addEventListener('change', (e) => { - adminPhysicalOnlyFilter = e.target.checked; - currentPage = 1; - renderAdminTable(); - }); - } const filmForm = document.getElementById('film-form'); if (filmForm) filmForm.addEventListener('submit', saveFilmForm);