From bacfe7218f6d6c42b2fc5574490fe2ff54e12783 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Sun, 22 Mar 2026 04:27:49 +0000 Subject: [PATCH] Fix address display --- ts/view/Communication.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/view/Communication.vue b/ts/view/Communication.vue index fa281727..ccdb6613 100644 --- a/ts/view/Communication.vue +++ b/ts/view/Communication.vue @@ -782,7 +782,7 @@ function formatAddress(a) { if (a.number === "" && a.street === "") { return "no address provided"; } - return `$${a.number} $${a.street}, ${a.locality}`; + return `${a.number} ${a.street}, ${a.locality}`; } function formatDistance(meters) {