diff options
| author | Fuwn <[email protected]> | 2026-05-29 23:44:08 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-05-29 23:44:08 +0000 |
| commit | 49879c43ebd9f36ec19f4c02fa2b121314126286 (patch) | |
| tree | bbf1e42eba5996640ffcc7f44d07245cdf2c5e5c /src/lib/Announcement.svelte | |
| parent | chore(biome): scope linting to remove Svelte false positives (diff) | |
| download | due.moe-49879c43ebd9f36ec19f4c02fa2b121314126286.tar.xz due.moe-49879c43ebd9f36ec19f4c02fa2b121314126286.zip | |
Auto-fixed cosmetic findings (import ordering, obj["k"]->obj.k, optional
chaining, template literals, Date.now, parseInt radix, useless ternaries/
switch cases). Resolved the non-autofixable rest by hand:
- Senpy: static-only class -> object literal (no this/static reliance).
- app.html: var global shim -> window.global = window (keeps the shim,
drops the unused-var flag).
- biome-ignore with rationale for the logout document.cookie clear and the
holodule scrape non-null assertion.
Verified: biome check 0 diagnostics, svelte-check 0/0, 24/24 unit tests.
Diffstat (limited to 'src/lib/Announcement.svelte')
| -rw-r--r-- | src/lib/Announcement.svelte | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/Announcement.svelte b/src/lib/Announcement.svelte index 4338f8ff..f1f87069 100644 --- a/src/lib/Announcement.svelte +++ b/src/lib/Announcement.svelte @@ -1,9 +1,9 @@ <script lang="ts"> +import { env } from "$env/dynamic/public"; import Spacer from "$lib/Layout/Spacer.svelte"; -import Popup from "./Layout/Popup.svelte"; import announcementHash from "$stores/announcementHash"; -import { env } from "$env/dynamic/public"; import identity from "$stores/identity"; +import Popup from "./Layout/Popup.svelte"; const announcement = env.PUBLIC_ANNOUNCEMENT; const dismissButton = env.PUBLIC_ANNOUNCEMENT_DISMISS; @@ -28,11 +28,11 @@ const maxWidth = (input: string, max = 100) => { for (const word of input.split(" ")) { if (line.length + word.length > max) { - output += line + "\n"; + output += `${line}\n`; line = ""; } - line += word + " "; + line += `${word} `; } return output + line; |