diff --git a/resources/assets/js/components/screens/FavoritesScreen.vue b/resources/assets/js/components/screens/FavoritesScreen.vue
index 6ab00714..11330880 100644
--- a/resources/assets/js/components/screens/FavoritesScreen.vue
+++ b/resources/assets/js/components/screens/FavoritesScreen.vue
@@ -86,7 +86,7 @@ let initialized = false
const fetchSongs = async () => {
await favoriteStore.fetch()
await nextTick()
- sort('title', 'asc')
+ sort()
}
eventBus.on('LOAD_MAIN_CONTENT', async (view: MainViewName) => {
diff --git a/resources/assets/js/components/screens/PlaylistScreen.vue b/resources/assets/js/components/screens/PlaylistScreen.vue
index 9901c7e5..fb30871c 100644
--- a/resources/assets/js/components/screens/PlaylistScreen.vue
+++ b/resources/assets/js/components/screens/PlaylistScreen.vue
@@ -47,8 +47,7 @@
The playlist is currently empty.
- Drag songs into its name in the sidebar
- or use the "Add To…" button to fill it up.
+ Drag songs into its name in the sidebar or use the "Add To…" button to fill it up.
@@ -57,7 +56,7 @@