Fix lint issues

This commit is contained in:
Max Isom 2021-09-14 14:18:17 -04:00
parent e59db76694
commit af8e81a569
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880

View file

@ -10,9 +10,9 @@ export const cleanUrl = (url: string) => {
u.searchParams.delete(name);
}
}
return u.toString();
}
catch (_: unknown) {
} catch (_: unknown) {
return url;
}
}
};