From cea0ab22e6d828c976d64557df94b15a599eb720 Mon Sep 17 00:00:00 2001 From: Hunter Date: Fri, 10 Jan 2025 13:38:03 -0600 Subject: [PATCH] chore: fix types --- src/renderer/src/components/toolbar/EngineStats.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/src/components/toolbar/EngineStats.tsx b/src/renderer/src/components/toolbar/EngineStats.tsx index 3314ea0..c6ed7e9 100644 --- a/src/renderer/src/components/toolbar/EngineStats.tsx +++ b/src/renderer/src/components/toolbar/EngineStats.tsx @@ -1,5 +1,5 @@ import { useEffect, useContext, useState } from "react" -import { Table, TableData, Paper } from "@mantine/core" +import { Table, TableData } from "@mantine/core" import { EditorConfigProvider } from "@src/contexts/EditorContext" interface EngineStatsProps {}