From 21c2b1c9e6e6ea79399d5d882f36fea2a84957f8 Mon Sep 17 00:00:00 2001 From: MrTRyy Date: Wed, 20 Dec 2023 15:44:17 +0100 Subject: [PATCH] Remove unused import statement in FancyChipList.tsx --- src/components/organisms/FancyChipList/FancyChipList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/organisms/FancyChipList/FancyChipList.tsx b/src/components/organisms/FancyChipList/FancyChipList.tsx index 98a6a3c67..63da3e10f 100644 --- a/src/components/organisms/FancyChipList/FancyChipList.tsx +++ b/src/components/organisms/FancyChipList/FancyChipList.tsx @@ -1,4 +1,4 @@ -import React, { KeyboardEvent, useEffect, useRef, useState } from 'react'; +import React, { KeyboardEvent, useEffect, useState } from 'react'; import { TLayer } from '@/interface/TLayer'; import { ChipList } from '@/components/molecules/ChipList';