watch icon showing incorrectly
This commit is contained in:
@@ -106,6 +106,7 @@ const Home = (props) => {
|
||||
searchString={props.search.searchString}
|
||||
searchResultsObj={props.searchResultsObj}
|
||||
isLinkedCase={isLinkedCase}
|
||||
showLoginCheck
|
||||
/>
|
||||
</div>
|
||||
<Footer footerLinks={footerLinks} />
|
||||
@@ -125,6 +126,7 @@ export const getServerSideProps = wrapper.getServerSideProps(
|
||||
: false;
|
||||
|
||||
//console.log("is linked:", isLinked);
|
||||
const showLoginCheck = process.env.SHOWLOGIN || false;
|
||||
|
||||
let searchResultsObj = await getBasicSearch(query.q);
|
||||
|
||||
@@ -156,7 +158,10 @@ export const getServerSideProps = wrapper.getServerSideProps(
|
||||
}
|
||||
|
||||
return {
|
||||
props: { isLinkedCase: isLinked },
|
||||
props: {
|
||||
isLinkedCase: isLinked,
|
||||
showLoginCheck: showLoginCheck,
|
||||
},
|
||||
};
|
||||
}
|
||||
// }
|
||||
|
||||
Reference in New Issue
Block a user