Skip to content
Snippets Groups Projects
Commit a721953c authored by Alexandru Munteanu's avatar Alexandru Munteanu
Browse files

fix(form): hot fix

parent aca26cc1
No related branches found
No related tags found
1 merge request!13Sprint #14
...@@ -55,9 +55,7 @@ import { ...@@ -55,9 +55,7 @@ import {
const guidelinesLink = const guidelinesLink =
'https://about.hindawi.com/authors/peer-review-at-hindawi/' 'https://about.hindawi.com/authors/peer-review-at-hindawi/'
const TextAreaField = ({ input }) => ( const TextAreaField = input => <Textarea {...input} height={70} rows={6} />
<Textarea {...input} height={70} rows={6} />
)
const ReviewerReportForm = ({ const ReviewerReportForm = ({
addFile, addFile,
......
...@@ -132,4 +132,4 @@ export const CustomValidatedField = styled.div` ...@@ -132,4 +132,4 @@ export const CustomValidatedField = styled.div`
} }
` `
export const TextAreaField = ({ input }) => <Textarea {...input} height={70} /> export const TextAreaField = input => <Textarea {...input} height={70} />
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment