From 74813bc7ce91277f68905be5ea8876784683f7ca Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 30 Nov 2023 11:10:11 -0800 Subject: fix(birthdays): current day --- src/lib/Tools/CharacterBirthdays.svelte | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) (limited to 'src/lib/Tools/CharacterBirthdays.svelte') diff --git a/src/lib/Tools/CharacterBirthdays.svelte b/src/lib/Tools/CharacterBirthdays.svelte index 1ba8f9b9..d1d03ed0 100644 --- a/src/lib/Tools/CharacterBirthdays.svelte +++ b/src/lib/Tools/CharacterBirthdays.svelte @@ -1,17 +1,29 @@ -{#await todaysCharacterBirthdays()} - Loading ... +{#await ACDBBirthdays(date.getMonth() + 1, date.getDate())} +

Loading ...

{:then birthdays} +

+ This tool does not use AniList's API, so it will have more characters than AniList, but also + some unexpected characters which may not be present in AniList. +

+
{#each birthdays as birthday}
- - {birthday.name.full} - Character (Large) + + {birthday.name} + Character (Large)
{/each} -- cgit v1.2.3