diff --git a/index.html b/index.html
index fd35569..c713c96 100644
--- a/index.html
+++ b/index.html
@@ -3643,7 +3643,9 @@
notify(`Restoring data! Please wait.`);
messenger.restoreData(data).then(result => {
notify("Data restore completed successful! Initiating reload, Please wait", 'success')
- setTimeout(onLoadStartUp, 2000)
+ setTimeout(() => {
+ location.reload()
+ }, 1000)
}).catch(error => {
notify("Failed to restore data! Try again later", "error", error);
});