From b9a254a767e22fd62092bbd4b20a90198106bc3d Mon Sep 17 00:00:00 2001 From: Chase Manning Date: Fri, 13 Dec 2024 08:42:59 +0000 Subject: [PATCH] :bug: fix aprs --- src/lib/apys.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/apys.ts b/src/lib/apys.ts index 4733e1a7..f445269a 100644 --- a/src/lib/apys.ts +++ b/src/lib/apys.ts @@ -22,6 +22,7 @@ export async function getMainnetApys(): Promise { // This is temporary while the pool is new and volatile // We will switch to the same APY system as the other pools once it stabilizes export async function getPolygonApys(): Promise { + return []; const response = await fetch(POLYGON_API_URL); const data = await response.json(); const aprData = data.apys[POLYGON_USDC_POOL_ID];