This commit is contained in:
2022-12-16 11:36:01 +00:00
parent f6d934d951
commit 98aefdd867
36 changed files with 1258 additions and 371 deletions
+8 -5
View File
@@ -306,8 +306,6 @@ const SearchResults = (props) => {
item.incidentid,
"appealType":
item.pinswg_appealcasetype,
"showreps":
props.showLoginCheck,
});
}}
>
@@ -536,12 +534,17 @@ const SearchResults = (props) => {
)}
</dd>
)}
{showLoginCheck == "true" && !session && (
{/* {showLoginCheck == "true" && !session && (
<dd>
<span
className="govuk-summary-list__actionLink watchLink"
onClick={() => {
signIn("email");
// signIn("email");
signIn("email", {
callbackUrl:
"/myportal/searchresults?q=" +
searchString,
});
// selectWatchedCase(
// cookies.pinsUser,
// item.incidentid,
@@ -557,7 +560,7 @@ const SearchResults = (props) => {
<span className="eye"></span>
</span>
</dd>
)}
)} */}
</div>
);
})