refactor: enhance recipe fingerprint calculation and return detailed recipe information; remove unnecessary console logs in import managers

This commit is contained in:
Will Miao
2025-05-08 16:54:49 +08:00
parent 92fdc16fe6
commit 75a95f0109
4 changed files with 12 additions and 12 deletions

View File

@@ -56,7 +56,6 @@ export class DownloadManager {
// Add source_path to metadata to track where the recipe was imported from
if (this.importManager.importMode === 'url') {
const urlInput = document.getElementById('imageUrlInput');
console.log("urlInput.value", urlInput.value);
if (urlInput && urlInput.value) {
completeMetadata.source_path = urlInput.value;
}