Skip to content

Commit

Permalink
Remove extra console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
1whatleytay committed Nov 1, 2023
1 parent 8a9beb7 commit 0fdedeb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/utils/query/serialize-files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ import { createDir, writeBinaryFile, writeFile } from '@tauri-apps/api/fs'
import { join } from '@tauri-apps/api/path'

export async function writeHexContents(destination: string, body: string) {
console.log('what the fuck')
console.log({ body })
const binary = Uint8Array.from(atob(body), c => c.charCodeAt(0))

await writeBinaryFile(destination, binary)
Expand Down

0 comments on commit 0fdedeb

Please sign in to comment.