feat: remove delay from bulk auto-organize completion

This commit is contained in:
Will Miao
2025-10-15 10:32:59 +08:00
parent 412f1e62a1
commit 321ff72953

View File

@@ -1146,10 +1146,7 @@ export class BulkManager {
// Call the auto-organize method with selected file paths
await apiClient.autoOrganizeModels(filePaths);
setTimeout(() => {
resetAndReload(true);
}, 1000);
resetAndReload(true);
} catch (error) {
console.error('Error during bulk auto-organize:', error);
showToast('toast.loras.autoOrganizeFailed', { error: error.message }, 'error');