Merge pull request 'feat: add store name and role properties to default session data' (#33) from hotfix/sessionData into dev

Reviewed-on: #33
This commit is contained in:
swyoo 2025-05-15 15:00:31 +09:00
commit 148ed2dda4

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 () => {