feat: add store name and role properties to default session data

This commit is contained in:
yoosangwook 2025-05-15 14:58:25 +09:00
parent ff52b2ab56
commit 7a23f02e85

View File

@ -25,6 +25,7 @@ export const defaultSession: SessionData = {
compCd: null,
agencyStoreId: null,
storeId: null,
storeNm: null,
userId: null,
category: null,
userNm: null,
@ -45,6 +46,7 @@ export const defaultSession: SessionData = {
custCd: null,
builderNo: null,
isLoggedIn: false,
role: null,
}
export const getSession = async () => {