From 109242f1278a9287eca371df218b76a6ba0a19fe Mon Sep 17 00:00:00 2001
From: Oleksandr Khomyakov <10237454+khomyakov@users.noreply.github.com>
Date: Tue, 27 Feb 2024 11:37:25 +0200
Subject: [PATCH] Linted
---
src/components/Forms/BaseInput.jsx | 2 +-
src/components/Forms/Input.jsx | 9 +--------
2 files changed, 2 insertions(+), 9 deletions(-)
diff --git a/src/components/Forms/BaseInput.jsx b/src/components/Forms/BaseInput.jsx
index 933b9b2c..812db4bc 100644
--- a/src/components/Forms/BaseInput.jsx
+++ b/src/components/Forms/BaseInput.jsx
@@ -1,6 +1,6 @@
import clsx from "clsx";
import PropTypes from "prop-types";
-import React, { forwardRef, useEffect } from "react";
+import React, { forwardRef } from "react";
import { isEmpty, isString } from "lodash";
import { Dot } from "../Dot/Dot";
diff --git a/src/components/Forms/Input.jsx b/src/components/Forms/Input.jsx
index 4c643a1c..9a110399 100644
--- a/src/components/Forms/Input.jsx
+++ b/src/components/Forms/Input.jsx
@@ -5,14 +5,7 @@ import { BaseInput } from "./BaseInput";
export const Input = forwardRef(({ className, type = "text", value, ...rest }, ref) => {
return (
-
+
);
});