You are using UserContext in UserCartApp which is not wrapped by UserProvider. Instead of that use it in Header like this.
export const Header = () => {
const { userConfig } = useContext(UserContext);
console.log('header config', userConfig);