ลบ setTimeout ตอน onMounted

This commit is contained in:
Net 2024-07-16 10:17:53 +07:00
parent 15407e8acc
commit 0b1a5c83d6

View file

@ -119,11 +119,9 @@ function onRestore(name: string) {
} }
onMounted(async () => { onMounted(async () => {
setTimeout(() => { fetchListBackup();
fetchListBackup(); backupRunningList();
backupRunningList(); restoreRunningList();
restoreRunningList();
}, 1000);
}); });
</script> </script>