diff options
| author | Fuwn <[email protected]> | 2024-02-01 22:57:46 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-01 22:57:46 -0800 |
| commit | 2ce87ea66c6dac11f7396393bdab4965e3b4d80f (patch) | |
| tree | 4e72cd250bc0a862358123ba330ffdffaf0ac804 /src/lib/AniList/follow.ts | |
| parent | feat(list): remove title display tooltips (diff) | |
| download | due.moe-2ce87ea66c6dac11f7396393bdab4965e3b4d80f.tar.xz due.moe-2ce87ea66c6dac11f7396393bdab4965e3b4d80f.zip | |
feat(likes): show avatar on hover
Diffstat (limited to 'src/lib/AniList/follow.ts')
| -rw-r--r-- | src/lib/AniList/follow.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/AniList/follow.ts b/src/lib/AniList/follow.ts index da477b6a..3601d510 100644 --- a/src/lib/AniList/follow.ts +++ b/src/lib/AniList/follow.ts @@ -5,6 +5,9 @@ export interface User { name: string; isFollowing: boolean; isFollower: boolean; + avatar: { + large: string; + }; } export const toggleFollow = async ( |