docoffline dependant appeals and reps

This commit is contained in:
2025-11-10 06:22:31 +00:00
parent eebe30a232
commit 02a83700ba
10 changed files with 178 additions and 47 deletions
+3
View File
@@ -66,6 +66,7 @@ const Home = (props) => {
showLoginCheck,
currentView,
mySubmittedReps,
docsOffline,
} = props;
let { t, lang } = useTranslation();
@@ -161,6 +162,7 @@ const Home = (props) => {
containerID={accountDetails.containerID}
showLoginCheck={showLoginCheck}
currentView={currentView}
docsOffline={docsOffline}
/>
</div>
<Footer footerLinks={footerLinks} ticketnumber={props} />
@@ -366,6 +368,7 @@ export const getServerSideProps = wrapper.getServerSideProps(
showFileUpload: process.env.SHOWFILEUPLOAD,
containerID: thisSession.user.id,
showLoginCheck: process.env.SHOWLOGIN,
docsOffline: process.env.DOCAPI_OFFLINE || false,
},
};
}