misc type fixes, album artist header page favorite/rating work now

This commit is contained in:
Kendall Garner
2026-02-01 22:04:46 -08:00
parent ba835bec3e
commit d2d8ea8249
5 changed files with 9 additions and 15 deletions
@@ -1,12 +0,0 @@
import { createContext, useContext } from 'react';
import { ListKey } from '/@/renderer/store';
export const AlbumListContext = createContext<{ id?: string; pageKey: ListKey }>({
pageKey: 'album',
});
export const useAlbumListContext = () => {
const ctxValue = useContext(AlbumListContext);
return ctxValue;
};