chore: pure ESM (#1202)

This commit is contained in:
Eli Bosley
2025-02-25 14:14:14 -05:00
committed by GitHub
parent d59ca415af
commit ae47866724
350 changed files with 2587 additions and 1923 deletions

View File

@@ -19,8 +19,7 @@ const origins = computed<string[]>(() => {
try {
const newUrl = new URL(origin.trim());
newOrigins.push(newUrl.toString());
// eslint-disable-next-line @typescript-eslint/no-unused-vars
} catch (e) {
} catch {
errors.value.push(`Invalid origin: ${origin}`);
}
});