diff options
| author | Fuwn <[email protected]> | 2026-03-01 16:04:11 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-01 16:04:11 -0800 |
| commit | 48f0c30d47d62e4f35706edb93a1bb2f97eba14c (patch) | |
| tree | 44866d7a61adfdf01a780e0108c370294d3db78b /src/lib/Tools/FollowFix.svelte | |
| parent | chore(biome): re-enable useAltText rule (diff) | |
| download | due.moe-48f0c30d47d62e4f35706edb93a1bb2f97eba14c.tar.xz due.moe-48f0c30d47d62e4f35706edb93a1bb2f97eba14c.zip | |
chore(biome): enable svelte formatting
Diffstat (limited to 'src/lib/Tools/FollowFix.svelte')
| -rw-r--r-- | src/lib/Tools/FollowFix.svelte | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/Tools/FollowFix.svelte b/src/lib/Tools/FollowFix.svelte index 62548379..a0e9902a 100644 --- a/src/lib/Tools/FollowFix.svelte +++ b/src/lib/Tools/FollowFix.svelte @@ -1,12 +1,12 @@ <script lang="ts"> - import { toggleFollow } from '$lib/Data/AniList/follow'; - import type { AniListAuthorisation } from '$lib/Data/AniList/identity'; - import LogInRestricted from '$lib/Error/LogInRestricted.svelte'; +import { toggleFollow } from '$lib/Data/AniList/follow'; +import type { AniListAuthorisation } from '$lib/Data/AniList/identity'; +import LogInRestricted from '$lib/Error/LogInRestricted.svelte'; - export let user: AniListAuthorisation; +export let user: AniListAuthorisation; - let input = ''; - let submit = ''; +let input = ''; +let submit = ''; </script> {#if user === undefined} |