From d793e67b565910c77ba133158fe89895f4dcac55 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sat, 17 Jan 2026 13:29:25 -0800 Subject: [PATCH] replace separator string with smaller bullet --- src/shared/api/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/api/utils.ts b/src/shared/api/utils.ts index 475c98f50..6585bc50b 100644 --- a/src/shared/api/utils.ts +++ b/src/shared/api/utils.ts @@ -139,7 +139,7 @@ export const getClientType = (): string => { } }; -export const SEPARATOR_STRING = ' • '; +export const SEPARATOR_STRING = ' · '; export const sortSongList = (songs: Song[], sortBy: SongListSort, sortOrder: SortOrder) => { let results: Song[] = songs;