aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Data
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-03-01 15:58:14 -0800
committerFuwn <[email protected]>2026-03-01 15:58:14 -0800
commit5daabeb615d2b17bdca4694b21c5caf5da88c3bb (patch)
treed539013d3107d4cf016a07ab1b4efbe965d917e6 /src/lib/Data
parentchore(biome): re-enable noDuplicateCase rule (diff)
downloaddue.moe-5daabeb615d2b17bdca4694b21c5caf5da88c3bb.tar.xz
due.moe-5daabeb615d2b17bdca4694b21c5caf5da88c3bb.zip
chore(biome): re-enable noDoubleEquals rule
Diffstat (limited to 'src/lib/Data')
-rw-r--r--src/lib/Data/AniList/wrapped.ts4
1 files changed, 2 insertions, 2 deletions
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