From dd1e64dd74444f914abf76a4d4b957a0ca2c97b4 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 22 Jul 2024 16:01:18 -0700 Subject: refactor(Data): rename awc module --- src/lib/Data/AWC.ts | 12 ------------ src/lib/Data/awc.ts | 12 ++++++++++++ src/lib/User/BadgeWall/AWC.svelte | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) delete mode 100644 src/lib/Data/AWC.ts create mode 100644 src/lib/Data/awc.ts (limited to 'src/lib') diff --git a/src/lib/Data/AWC.ts b/src/lib/Data/AWC.ts deleted file mode 100644 index 1237eaa0..00000000 --- a/src/lib/Data/AWC.ts +++ /dev/null @@ -1,12 +0,0 @@ -export interface AWCBadge { - link: string; - description: string; - image: string; - source: string; - designer: string; -} - -export interface AWCBadgesGroup { - group: string; - badges: AWCBadge[]; -} diff --git a/src/lib/Data/awc.ts b/src/lib/Data/awc.ts new file mode 100644 index 00000000..1237eaa0 --- /dev/null +++ b/src/lib/Data/awc.ts @@ -0,0 +1,12 @@ +export interface AWCBadge { + link: string; + description: string; + image: string; + source: string; + designer: string; +} + +export interface AWCBadgesGroup { + group: string; + badges: AWCBadge[]; +} diff --git a/src/lib/User/BadgeWall/AWC.svelte b/src/lib/User/BadgeWall/AWC.svelte index a663eb39..d80ae72a 100644 --- a/src/lib/User/BadgeWall/AWC.svelte +++ b/src/lib/User/BadgeWall/AWC.svelte @@ -1,5 +1,5 @@