diff --git a/src/app/Dashboard/page.tsx b/src/app/Dashboard/page.tsx index 587c42c..20e6fdd 100644 --- a/src/app/Dashboard/page.tsx +++ b/src/app/Dashboard/page.tsx @@ -1,7 +1,7 @@ "use client"; import React, { useEffect, useState } from "react"; import { Grid, Card } from "@tremor/react"; -import ReactFlow, { Background, Controls } from 'reactflow'; +import { RoughNotation } from "react-rough-notation"; import { getFollowerAnalysis, getFollowingAnalysis, @@ -107,6 +107,7 @@ const VersionDashboard: React.FC = () => { const [oldestRepoCard, setShowOldestRepoCard] = useState(true); const [newestRepoCard, setNewRepoCard] = useState(false); + const [show, setShow] = useState(true); const getFollowerAnalysisData = async () => { try { @@ -323,7 +324,6 @@ const VersionDashboard: React.FC = () => {