Skip to content

Commit

Permalink
perf: remove debug console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Zxilly committed May 30, 2024
1 parent 6d644a5 commit ac6347a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ui/src/explorer/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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(() => {
Expand Down

0 comments on commit ac6347a

Please sign in to comment.