plane/space/hooks/store/user/use-user-profile.ts
2024-05-12 19:15:10 +05:30

11 lines
387 B
TypeScript

import { useContext } from "react";
// store
import { StoreContext } from "@/lib/app-providers";
import { IProfileStore } from "@/store/user/profile.store";
export const useUserProfile = (): IProfileStore => {
const context = useContext(StoreContext);
if (context === undefined) throw new Error("useUserProfile must be used within StoreProvider");
return context.user.profile;
};