From 52e18058b60c5718dc4dcc05b9f6027ff7767cef Mon Sep 17 00:00:00 2001 From: xangelo Date: Sat, 18 Jan 2025 23:20:30 -0500 Subject: [PATCH] fix: remove the grid size from being displayed on the inventory page --- src/server/views/inventory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/views/inventory.ts b/src/server/views/inventory.ts index 41857e5..bf5d1c9 100644 --- a/src/server/views/inventory.ts +++ b/src/server/views/inventory.ts @@ -9,7 +9,7 @@ import { getDurabilityApproximation, expToLevel, levelFromExp } from "@shared/in import { slugify } from "@shared/utils"; function icon(icon_name?: string): string { - const placeholder = 'https://placehold.co/64x64/af936c/6d5f4d'; + const placeholder = 'https://placehold.co/64x64/af936c/af936c'; const icon = icon_name ? `/assets/img/icons/equipment/${icon_name}` : placeholder; return icon; -- 2.25.1