From 372f84d1b1d209fa8fb24c9d13c3302ec43543d2 Mon Sep 17 00:00:00 2001 From: user Date: Thu, 30 Jan 2025 03:17:01 +0300 Subject: [PATCH] remove unused vars --- src/pages/root/steps/data-step/index.tsx | 1 - src/shared/ui/hashtag-input/index.tsx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages/root/steps/data-step/index.tsx b/src/pages/root/steps/data-step/index.tsx index 15e6e42..2878be1 100644 --- a/src/pages/root/steps/data-step/index.tsx +++ b/src/pages/root/steps/data-step/index.tsx @@ -3,7 +3,6 @@ import { useForm } from "react-hook-form"; import { zodResolver } from "@hookform/resolvers/zod"; import { z } from "zod"; import ReactPlayer from "react-player/lazy"; -import { WithContext as ReactTagInput } from 'react-tag-input'; import { FormLabel } from "~/shared/ui/form-label"; import { Input } from "~/shared/ui/input"; diff --git a/src/shared/ui/hashtag-input/index.tsx b/src/shared/ui/hashtag-input/index.tsx index 4536996..33745dd 100644 --- a/src/shared/ui/hashtag-input/index.tsx +++ b/src/shared/ui/hashtag-input/index.tsx @@ -1,4 +1,4 @@ -import React, { useState } from "react"; +import { useState } from "react"; import { WithContext as ReactTags } from "react-tag-input"; import { useRootStore } from "~/shared/stores/root";