Fix lint errors

This commit is contained in:
Mattias Granlund 2023-11-22 13:52:08 +01:00
parent af9ea08dc6
commit 829390ee73
3 changed files with 104 additions and 106 deletions

View File

@ -1,5 +1,3 @@
import md5 from 'blueimp-md5';
export function gravatarUrl(id: string | undefined | null): URL | undefined {
if (id) return new URL(`https://www.gravatar.com/avatar/${id}?s=100&r=g&d=retro`);
}