aboutsummaryrefslogtreecommitdiff
path: root/src/routes
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/user/[user]/+page.svelte3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/routes/user/[user]/+page.svelte b/src/routes/user/[user]/+page.svelte
index 858e6aec..171d4e5c 100644
--- a/src/routes/user/[user]/+page.svelte
+++ b/src/routes/user/[user]/+page.svelte
@@ -1,5 +1,6 @@
<script lang="ts">
import { user, type User } from '$lib/AniList/user';
+ import { estimatedDayReading } from '$lib/Media/manga.js';
import { onMount } from 'svelte';
export let data;
@@ -50,7 +51,7 @@
This user has watched {(userData.statistics.anime.minutesWatched / 60 / 24).toFixed(1)} days of
anime and read
- {((userData.statistics.manga.chaptersRead * 8.58) / 60 / 24).toFixed(1)} days of manga.
+ {estimatedDayReading(userData.statistics.manga.chaptersRead).toFixed(1)} days of manga.
</div>
</div>
{/if}