From ac6347a73ef2600c958170f22b750d80d2819ac7 Mon Sep 17 00:00:00 2001 From: Zxilly Date: Thu, 30 May 2024 19:03:25 +0800 Subject: [PATCH] perf: remove debug console.log --- ui/src/explorer/app.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ui/src/explorer/app.tsx b/ui/src/explorer/app.tsx index 4e4efe1a0a..161880d715 100644 --- a/ui/src/explorer/app.tsx +++ b/ui/src/explorer/app.tsx @@ -43,9 +43,7 @@ export const App: React.FC = () => { const bytes = await file.arrayBuffer() const uint8 = new Uint8Array(bytes) - const r = gsa_analyze(file.name, uint8) - console.log(r) - return r + return gsa_analyze(file.name, uint8) }, [file]) const entry = useMemo(() => {