From 998b63a35256ac985a5a2714dd1ca451af4dfd8a Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 9 Oct 2024 00:41:20 -0700 Subject: chore(prettier): use spaces instead of tabs --- src/lib/Tools/EpisodeDiscussionCollector.svelte | 104 ++++++++++++------------ 1 file changed, 52 insertions(+), 52 deletions(-) (limited to 'src/lib/Tools/EpisodeDiscussionCollector.svelte') diff --git a/src/lib/Tools/EpisodeDiscussionCollector.svelte b/src/lib/Tools/EpisodeDiscussionCollector.svelte index d213949f..4c61f3cf 100644 --- a/src/lib/Tools/EpisodeDiscussionCollector.svelte +++ b/src/lib/Tools/EpisodeDiscussionCollector.svelte @@ -1,61 +1,61 @@ - {#if submission !== ''} - {#await threads(submission)} - - {:then threads} -
    - {#each threads - .filter((thread) => thread.title.includes('[Spoilers]') && thread.title.includes('Episode')) - .sort((a, b) => b.createdAt - a.createdAt) as thread} -
  • - - {new Date(thread.createdAt * 1000).toLocaleDateString('en-US', { - month: 'short', - day: 'numeric', - year: 'numeric' - })} - - `} - use:tooltip - > - {thread.title.replace('[Spoilers]', '')} - -
  • - {/each} -
- {:catch} -

Threads could not be loaded. You might have been rate-limited.

-

- Try again in a few minutes. If the problem persists, please contact @fuwn on AniList. -

- {/await} - {:else} -

+ {#if submission !== ''} + {#await threads(submission)} + + {:then threads} +

    + {#each threads + .filter((thread) => thread.title.includes('[Spoilers]') && thread.title.includes('Episode')) + .sort((a, b) => b.createdAt - a.createdAt) as thread} +
  • + + {new Date(thread.createdAt * 1000).toLocaleDateString('en-US', { + month: 'short', + day: 'numeric', + year: 'numeric' + })} + + `} + use:tooltip + > + {thread.title.replace('[Spoilers]', '')} + +
  • + {/each} +
+ {:catch} +

Threads could not be loaded. You might have been rate-limited.

+

+ Try again in a few minutes. If the problem persists, please contact @fuwn on AniList. +

+ {/await} + {:else} +

- Enter a username to search for to continue. - {/if} + Enter a username to search for to continue. + {/if} -- cgit v1.2.3