diff --git a/CEO/src/renderer/js/sending_file_confirmation.js b/CEO/src/renderer/js/sending_file_confirmation.js index 9ee88d0..a67265a 100644 --- a/CEO/src/renderer/js/sending_file_confirmation.js +++ b/CEO/src/renderer/js/sending_file_confirmation.js @@ -66,6 +66,6 @@ document.addEventListener("DOMContentLoaded", async function () { } await performUploads(); - await timeout(10000); // Consider the necessity of this delay in production + await timeout(3000); // Consider the necessity of this delay in production fadeOut('main_menu.html'); }); diff --git a/User/src/renderer/js/sending_file_confirmation.js b/User/src/renderer/js/sending_file_confirmation.js index f713509..9fe8f75 100644 --- a/User/src/renderer/js/sending_file_confirmation.js +++ b/User/src/renderer/js/sending_file_confirmation.js @@ -59,7 +59,7 @@ document.addEventListener("DOMContentLoaded", async function () { } await performUploads(); - await timeout(10000); + await timeout(3000); fadeOut('main_menu.html'); // Make sure this function is properly defined or available in your context });