1
0
mirror of https://git.boykissers.com/pawkey/pawkey-sk.git synced 2025-12-20 04:04:16 +00:00

Fix linter issue

ESLint my beloathed
This commit is contained in:
Julia Johannesen
2025-04-27 15:42:19 -04:00
parent 68d09f0e06
commit b25f869a7a

View File

@@ -39,7 +39,7 @@ export function maybeMakeRelative(urlStr: string, baseStr: string): string {
return urlObj.pathname + urlObj.search + urlObj.hash;
}
return urlStr;
} catch (e) {
} catch (error) {
return '';
}
}