Removed development console.log's and added Dockerfile
This commit is contained in:
parent
19fa7fc4e5
commit
53ea63b35f
6
Dockerfile
Normal file
6
Dockerfile
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
FROM node:14.4.0-alpine3.10
|
||||||
|
USER root
|
||||||
|
WORKDIR /frontend
|
||||||
|
COPY . /frontend
|
||||||
|
RUN yarn
|
||||||
|
RUN yarn build
|
@ -24,7 +24,6 @@ export const useForm = () => {
|
|||||||
const setInitialState = useCallback(
|
const setInitialState = useCallback(
|
||||||
(questions: QuestionT[]) => {
|
(questions: QuestionT[]) => {
|
||||||
const state = getInitialState(questions)
|
const state = getInitialState(questions)
|
||||||
console.log('Setting state')
|
|
||||||
setAnswers(state)
|
setAnswers(state)
|
||||||
},
|
},
|
||||||
[setAnswers]
|
[setAnswers]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user