plane/space/hooks/store/use-user-profile.ts
2024-05-18 16:22:53 +05:30

12 lines
390 B
TypeScript

import { useContext } from "react";
// lib
import { StoreContext } from "@/lib/store-provider";
// store
import { IProfileStore } from "@/store/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;
};