From 52326ea241509ce89c8b5db1c0b29dd3c1c405c9 Mon Sep 17 00:00:00 2001 From: gnanariddhika r Date: Sun, 9 Jun 2024 09:00:01 +0530 Subject: [PATCH] Optimized the feature --- feedback.html | 1 - feedback.js | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/feedback.html b/feedback.html index 0e105a31..95c9daa7 100644 --- a/feedback.html +++ b/feedback.html @@ -101,7 +101,6 @@

RATE OUR SERVICE

-
diff --git a/feedback.js b/feedback.js index 6516d607..409a76fe 100644 --- a/feedback.js +++ b/feedback.js @@ -65,6 +65,8 @@ function submitFeedback() { // Clear the feedback input box after the user acknowledges the success modal if (result.isConfirmed || result.isDismissed) { feedbackInput.value = ""; + // Redirect to the home page + window.location.href = 'index.html'; } });