rename player context hook

This commit is contained in:
jeffvli
2025-11-14 19:54:46 -08:00
parent 9c2ed36b5c
commit ec0590c79a
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);
};