wip for delete reps in view all

This commit is contained in:
2024-05-30 15:43:33 +01:00
parent ec6c76ded0
commit cf8ff7f45f
14 changed files with 651 additions and 21 deletions
+7
View File
@@ -30,6 +30,11 @@ import {
setWatchedCases,
setWatchedCasesDetails,
} from "../../store/watchedCases/action";
import {
setAccountDetails,
setContainerID,
setLoggedInUserId,
} from "../../store/accountDetails/action";
import { getSession, useSession } from "next-auth/react";
@@ -181,6 +186,8 @@ export const getServerSideProps = wrapper.getServerSideProps(
store.dispatch(setDNSCoords(dnsCoords));
store.dispatch(setWatchedCases(watchedCases));
store.dispatch(setWatchedCasesDetails(watchedCasesDetails));
store.dispatch(setLoggedInUserId(loggedInUser));
return {
props: { showMap: showMapCheck },
};