Skip to content

Commit

Permalink
chore: Remove console.logs from example
Browse files Browse the repository at this point in the history
  • Loading branch information
icidasset committed Mar 27, 2024
1 parent 76ca4f4 commit 9f16faa
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions examples/w3-wnfs/src/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ export async function load({
const dataRoot = await Pointer.lookup({ client })
const storedKey = await Keys.lookup({ path: privatePath })

console.log(dataRoot, storedKey)

// Create or load file system
const fs =
dataRoot === undefined
Expand Down Expand Up @@ -114,7 +112,6 @@ export const Pointer = {
},

async saveLocally({ dataRoot }: { dataRoot: CID }): Promise<void> {
console.log(this.LOCAL_NAME, dataRoot)
await IDB.set(this.LOCAL_NAME, dataRoot.toString())
},

Expand Down

0 comments on commit 9f16faa

Please sign in to comment.