fixed redirect #32

Merged
brian merged 1 commits from fix-edit-child-cancel-redirect into main 2025-11-12 17:34:42 +01:00
+2 -1
View File
@@ -338,7 +338,8 @@
} }
function goBack() { function goBack() {
window.location.href = "/"; // Redirect to settings page if editing, otherwise home page
window.location.href = isEditMode ? "/settings.html" : "/";
} }
function skipToHome() { function skipToHome() {