diff --git a/public/Skins/amy.png b/public/Skins/amy.png new file mode 100644 index 0000000..47a8853 Binary files /dev/null and b/public/Skins/amy.png differ diff --git a/src/components/views/SkinsView.tsx b/src/components/views/SkinsView.tsx index c7a1598..dcd4637 100644 --- a/src/components/views/SkinsView.tsx +++ b/src/components/views/SkinsView.tsx @@ -54,6 +54,7 @@ const DEFAULT_SKINS: SavedSkin[] = [ url: "/Skins/PrismaChunk0.png", isSlim: false, }, + { id: "amy", name: "Amy", url: "/Skins/amy.png", isSlim: true }, ]; const SkinsView = memo(function SkinsView() { @@ -167,7 +168,11 @@ const SkinsView = memo(function SkinsView() { } } catch (e: unknown) { setImportError( - e instanceof Error ? e.message : typeof e === "string" ? e : "Failed to fetch", + e instanceof Error + ? e.message + : typeof e === "string" + ? e + : "Failed to fetch", ); } finally { setIsImporting(false);