From 9c66a4f783d2463cc929080f8d8c3f98de61207c Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Wed, 4 Mar 2026 15:38:43 -0500 Subject: [PATCH] fix: remove unused React import in TemplatesView --- frontend/src/components/TemplatesView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/TemplatesView.tsx b/frontend/src/components/TemplatesView.tsx index 6668d403..ebea14f7 100644 --- a/frontend/src/components/TemplatesView.tsx +++ b/frontend/src/components/TemplatesView.tsx @@ -1,4 +1,4 @@ -import React, { useState, useEffect } from 'react'; +import { useState, useEffect } from 'react'; import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { Input } from "@/components/ui/input";