mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
88ebda42ff
* dev: update python version * dev: handle magic code attempt exhausted * dev: update app, space and god mode redirection paths * fix: handled signup and signin workflow * chore: auth input error indication and autofill styling improvement * dev: add app redirection urls * dev: update redirections * chore: onboarding improvement * chore: onboarding improvement * chore: redirection issue in space resolved * chore: instance empty state added * dev: fix app, space, admin redirection in docker setitngs --------- Co-authored-by: guru_sainath <gurusainath007@gmail.com> Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so>
11 lines
391 B
TypeScript
11 lines
391 B
TypeScript
import { useContext } from "react";
|
|
// store
|
|
import { StoreContext } from "@/lib/store-context";
|
|
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.userProfile;
|
|
};
|