add cookie consent manger & updated cookie banner

This commit is contained in:
2021-10-14 19:35:32 +01:00
parent 54405e6943
commit aaaf889139
48 changed files with 818 additions and 119 deletions
-1
View File
@@ -7,7 +7,6 @@ import { Field, reduxForm } from "redux-form";
import LoadingOverlay from "react-loading-overlay";
import { getLogin } from "../../actions";
import { setLoggedInUserId } from "../../store/accountDetails/action";
import Cookies from "cookies";
const required = (errorMsg) => (value) =>
value || typeof value === "number" ? undefined : errorMsg;