From 5daabeb615d2b17bdca4694b21c5caf5da88c3bb Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sun, 1 Mar 2026 15:58:14 -0800 Subject: chore(biome): re-enable noDoubleEquals rule --- src/lib/Data/AniList/wrapped.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/Data/AniList') diff --git a/src/lib/Data/AniList/wrapped.ts b/src/lib/Data/AniList/wrapped.ts index 4ca9f772..781d8e7f 100644 --- a/src/lib/Data/AniList/wrapped.ts +++ b/src/lib/Data/AniList/wrapped.ts @@ -105,7 +105,7 @@ const profileActivities = async ( .flat() .filter( (activity) => - activity.type == 'TEXT' && + activity.type === 'TEXT' && activity.createdAt > beginningOfYear && activity.createdAt < now / 1000 ).length, @@ -113,7 +113,7 @@ const profileActivities = async ( .flat() .filter( (activity) => - activity.type == 'MESSAGE' && + activity.type === 'MESSAGE' && activity.createdAt > beginningOfYear && activity.createdAt < now / 1000 ).length -- cgit v1.2.3