chore: remove redundant 'done' line from discover output
All checks were successful
Build and Deploy / Build & Push (push) Successful in 3m27s

The → ID line already confirms success.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-04 16:59:11 -04:00
parent edd044a1f8
commit e1b0e5e44d

View File

@@ -116,7 +116,6 @@ async function main() {
// Fetch full info to store name/abbreviation // Fetch full info to store name/abbreviation
const info = await fetchParkInfo(apiId); const info = await fetchParkInfo(apiId);
setApiId(db, park.id, apiId, info?.parkAbbreviation, info?.parkName); setApiId(db, park.id, apiId, info?.parkAbbreviation, info?.parkName);
console.log(`done (ID ${apiId})`);
} catch (err) { } catch (err) {
console.log(`ERROR: ${err}`); console.log(`ERROR: ${err}`);
} }