Skip to content

Commit 9c4adf4

Browse files
committed
lint:fixtures
Signed-off-by: Arya Pratap Singh <notaryasingh@gmail.com>
1 parent 00b30e5 commit 9c4adf4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

frontend-interface/app/page.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@
626626

627627
"use client";
628628

629-
import React, { useState, useEffect } from "react";
629+
import React, { useState } from "react";
630630
import { motion, AnimatePresence } from "framer-motion";
631631
import dynamic from "next/dynamic";
632632
import { Loader2, ExternalLink, Cpu, MessageSquare } from 'lucide-react';
@@ -674,7 +674,7 @@ const DSASolutionInterface = () => {
674674
const [spaceComplexity, setSpaceComplexity] = useState("");
675675
const [activeStep, setActiveStep] = useState(0);
676676
const [showChat, setShowChat] = useState(false);
677-
const [messages, setMessages] = useState<TextMessage[]>([]);
677+
// const [messages, setMessages] = useState<TextMessage[]>([]);
678678

679679
const handleOpenEditor = () => {
680680
if (solution?.code) {
@@ -754,6 +754,7 @@ const DSASolutionInterface = () => {
754754

755755
};
756756

757+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
757758
const { state, setState, run } = useCoAgent<AgentState>({
758759
name: "dsa_agent",
759760
initialState: {

frontend-interface/components/MermaidRenderer.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ interface Transform {
2323

2424
const MermaidRenderer = ({ value }: { value: string }) => {
2525
const [isLoading, setIsLoading] = useState(true);
26+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
2627
const [isFullscreen, setIsFullscreen] = useState(false);
2728
const [isPanning, setIsPanning] = useState(false);
2829
const [transform, setTransform] = useState<Transform>({ scale: 1, translateX: 0, translateY: 0 });

0 commit comments

Comments
 (0)