diff options
| author | Fuwn <[email protected]> | 2024-04-19 16:52:28 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-04-19 16:52:28 -0700 |
| commit | b23ffc34407dd9e5cf7aec67c8618d329b36bca0 (patch) | |
| tree | 7a5f83c61e3652b092b4db4bf9fec313047085f4 /src/lib/BadgeWall | |
| parent | fix(badges): fix badge selection (diff) | |
| download | due.moe-b23ffc34407dd9e5cf7aec67c8618d329b36bca0.tar.xz due.moe-b23ffc34407dd9e5cf7aec67c8618d329b36bca0.zip | |
refactor(image): move cdn to image
Diffstat (limited to 'src/lib/BadgeWall')
| -rw-r--r-- | src/lib/BadgeWall/BadgePreview.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/BadgeWall/BadgePreview.svelte b/src/lib/BadgeWall/BadgePreview.svelte index dd2b7fd9..6515bc19 100644 --- a/src/lib/BadgeWall/BadgePreview.svelte +++ b/src/lib/BadgeWall/BadgePreview.svelte @@ -1,6 +1,6 @@ <script lang="ts"> import type { Badge } from '$lib/Database/userBadges'; - import cdn from '$lib/Utility/cdn'; + import { cdn } from '$lib/Utility/image'; import { databaseTimeToDate } from '$lib/Utility/time'; import locale from '$stores/locale'; import { cubicOut } from 'svelte/easing'; |