From 22ed2e095d42603f031729b04d82dac549d2216e Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Sun, 19 May 2024 09:45:33 +0100 Subject: [PATCH] replace hyphen with bullet point --- internal/model/list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/model/list.go b/internal/model/list.go index c2a839b..04c6cbc 100644 --- a/internal/model/list.go +++ b/internal/model/list.go @@ -100,7 +100,7 @@ func (l List) String() string { if len(l.Accounts) > 0 { for id, name := range l.Accounts { output += fmt.Sprintf( - "\n - %s (%s)", + "\n • %s (%s)", utilities.DisplayNameFormat(name), id, )