From e1559d2f50db0c219864690f7ea61c4fafb6387d Mon Sep 17 00:00:00 2001 From: Boof2015 <75185879+Boof2015@users.noreply.github.com> Date: Mon, 13 Jul 2026 14:23:06 -0400 Subject: [PATCH] change default sort order --- src/stores/libraryStore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stores/libraryStore.ts b/src/stores/libraryStore.ts index 67837e8..6234265 100644 --- a/src/stores/libraryStore.ts +++ b/src/stores/libraryStore.ts @@ -146,8 +146,8 @@ export const useLibraryStore = create((set, get) => { folders: [], totalTrackCount: 0, viewMode: 'albums', - trackSort: 'artist', - albumSort: 'artist', + trackSort: 'title', + albumSort: 'name', artistSort: 'name', isScanning: false, scanProgress: { ...IDLE_PROGRESS },