rename player context hook

This commit is contained in:
jeffvli
2025-11-14 19:54:46 -08:00
parent b1964766bd
commit df125564c2
9 changed files with 18 additions and 24 deletions
@@ -466,7 +466,7 @@ export const PlayerProvider = ({ children }: { children: React.ReactNode }) => {
return <PlayerContext.Provider value={contextValue}>{children}</PlayerContext.Provider>;
};
export const usePlayerContext = () => {
export const usePlayer = () => {
return useContext(PlayerContext);
};