Skip to content

Commit e19da1f

Browse files
fix(library): restore missing async on _fetchLibraryData
Regression from 9f7045f dropped the async keyword, causing "await isn't allowed in non-async function" build failure. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9f7045f commit e19da1f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/frontend/js/stores/library.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export function createLibraryStore(Alpine) {
210210
/**
211211
* Fetch library data from backend API
212212
*/
213-
_fetchLibraryData() {
213+
async _fetchLibraryData() {
214214
// Map frontend sort keys to backend column names
215215
const sortKeyMap = {
216216
default: 'album',

0 commit comments

Comments
 (0)