From 0127eeaae6f92646d91d5e38a2a8ec7082b79eb2 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 10 Mar 2026 01:51:25 +0000 Subject: [PATCH] fix: remove quotes around backstory display Co-Authored-By: Claude Opus 4.6 --- client/src/ui/NpcInfoPanel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/ui/NpcInfoPanel.ts b/client/src/ui/NpcInfoPanel.ts index a41edf4..5932afe 100644 --- a/client/src/ui/NpcInfoPanel.ts +++ b/client/src/ui/NpcInfoPanel.ts @@ -470,7 +470,7 @@ export class NpcInfoPanel { // Update backstory const backstory = entity.backstory; if (backstory && backstory.length > 0) { - this.backstoryEl.textContent = `"${backstory}"`; + this.backstoryEl.textContent = backstory; this.backstoryEl.style.opacity = '1'; this.backstoryEl.style.minHeight = '40px'; } else {