diff --git a/conf/inject.template.js b/conf/inject.template.js index 583945b45..8228a671d 100644 --- a/conf/inject.template.js +++ b/conf/inject.template.js @@ -1,3 +1,4 @@ +/* eslint-disable */ window.injectedEnv = { REACT_APP_BACKEND_GETUSERINFO_API: '${REACT_APP_BACKEND_GETUSERINFO_API}', REACT_APP_LOGIN_URL: '${REACT_APP_LOGIN_URL}', diff --git a/src/content/questionnaire/sections/B.tsx b/src/content/questionnaire/sections/B.tsx index 1d6964dd2..a6a639bc7 100644 --- a/src/content/questionnaire/sections/B.tsx +++ b/src/content/questionnaire/sections/B.tsx @@ -17,7 +17,6 @@ import AddRemoveButton from "../../../components/Questionnaire/AddRemoveButton"; import PlannedPublication from "../../../components/Questionnaire/PlannedPublication"; import initialValues from "../../../config/InitialValues"; - type KeyedPublication = { key: string; } & Publication; diff --git a/src/layouts/index.tsx b/src/layouts/index.tsx index ae4199936..d51a18609 100644 --- a/src/layouts/index.tsx +++ b/src/layouts/index.tsx @@ -8,7 +8,7 @@ import Header from '../components/Header'; import ScrollButton from '../components/ScrollButton/ScrollButtonView'; const StyledWrapper = styled("div")(() => ({ - minHeight: "300px", + minHeight: "400px", })); interface LayoutProps { diff --git a/tsconfig.json b/tsconfig.json index 23464c281..b2a222c3e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -23,6 +23,7 @@ "include": [ "src", ".eslintrc.cjs", - "types/*.d.ts" + "types/*.d.ts", + "conf" ] }