Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
janndriessen committed Jan 9, 2024
1 parent a0821f7 commit 94a8181
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib/hooks/use-apy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export const useApy = (symbol: string): { apy: BigNumber } => {
const indexApi = new IndexApi()
const { apy } = await indexApi.get(`/${symbol.toLowerCase()}/apy`)
setApy(BigNumber.from(apy))
console.log(apy)
} catch (err) {
console.log(err)
}
Expand Down

0 comments on commit 94a8181

Please sign in to comment.