diff --git a/src/bootstrap/RadioSet.js b/src/bootstrap/RadioSet.js
index 48017a4..63af8f0 100644
--- a/src/bootstrap/RadioSet.js
+++ b/src/bootstrap/RadioSet.js
@@ -11,7 +11,6 @@ import { useUID } from "react-uid";
import { formFieldsSize } from "./constants";
-
RadioSet.propTypes = {
/** Name attribute of the input HTML tag. */
name: PropTypes.string.isRequired,
diff --git a/src/bootstrap/Select.js b/src/bootstrap/Select.js
index bc524c4..0d90752 100644
--- a/src/bootstrap/Select.js
+++ b/src/bootstrap/Select.js
@@ -9,7 +9,6 @@ import React from "react";
import PropTypes from "prop-types";
import { useUID } from "react-uid";
-
Select.propTypes = {
/** Select field Label. */
label: PropTypes.string.isRequired,
diff --git a/src/bootstrap/TextInput.js b/src/bootstrap/TextInput.js
index 137e114..be60bb6 100644
--- a/src/bootstrap/TextInput.js
+++ b/src/bootstrap/TextInput.js
@@ -10,10 +10,8 @@ import PropTypes from "prop-types";
import { Input } from "./Input";
-
export const TextInput = ({ ...props }) => ;
-
TextInput.propTypes = {
/** Field label. */
label: PropTypes.string.isRequired,
diff --git a/src/form/hooks.js b/src/form/hooks.js
index ebc48c5..f91b5da 100644
--- a/src/form/hooks.js
+++ b/src/form/hooks.js
@@ -48,7 +48,6 @@ export function useForm(validator, dataPreprocessor) {
];
}
-
function formReducer(state, action) {
switch (action.type) {
case FORM_ACTIONS.updateValue: {
diff --git a/src/validations.js b/src/validations.js
index 692d005..2af2855 100644
--- a/src/validations.js
+++ b/src/validations.js
@@ -29,7 +29,6 @@ const REs = {
MultipleEmails: /^([a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+ *)( *, *[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+ *)*$/,
};
-
const createValidator = (fieldType) => (value) => {
if (value && value !== "") return REs[fieldType].test(value) ? undefined : ERROR_MESSAGES[fieldType];
};