fix: remove unused urlObj to satisfy linter
Some checks failed
🚀 Build & Deploy / 🔍 Prepare (push) Successful in 4s
🚀 Build & Deploy / 🧪 QA (push) Failing after 50s
🚀 Build & Deploy / 🚀 Deploy (push) Has been cancelled
🚀 Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
🚀 Build & Deploy / 🔔 Notify (push) Has been cancelled
🚀 Build & Deploy / 🏗️ Build (push) Has been cancelled

This commit is contained in:
2026-04-21 19:26:25 +02:00
parent 9b9d4634dd
commit d4c32476d6

View File

@@ -94,8 +94,8 @@ async function main() {
baseConfig = JSON.parse(fs.readFileSync(baseConfigPath, 'utf8'));
}
// Extract domain for cookie
const urlObj = new URL(targetUrl);
// Extract domain for cookie (not currently used)
// const urlObj = new URL(targetUrl);
// domain is not used, so remove or keep if needed later? Linter says unused.
// const domain = urlObj.hostname;