From d2495e9bda83776513ebac9657325b6480835e12 Mon Sep 17 00:00:00 2001 From: Eric Forgy Date: Sat, 10 Sep 2022 13:08:12 -0700 Subject: [PATCH] Suppress console warnings for v2. --- src/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.js b/src/utils.js index 4d73a08e..a1277404 100644 --- a/src/utils.js +++ b/src/utils.js @@ -97,7 +97,7 @@ const checkForSdkUpdates = async () => { try { const { response } = await RESTController.ajax( 'GET', - 'https://www.unpkg.com/moralis/package.json' + 'https://www.unpkg.com/moralis-v1/package.json' ); const latestVersion = response.version; const installedVersion = process.env.NEXT_VERSION;