From 0daab267d121ca80ebcb524dd1ffcaa5a2c05999 Mon Sep 17 00:00:00 2001 From: Matias Poblete <86752543+MattPoblete@users.noreply.github.com> Date: Mon, 16 Dec 2024 17:52:04 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9Fix=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/dapp/src/helpers/getRemoteConfig.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/dapp/src/helpers/getRemoteConfig.ts b/apps/dapp/src/helpers/getRemoteConfig.ts index 436e2b6..13c2486 100644 --- a/apps/dapp/src/helpers/getRemoteConfig.ts +++ b/apps/dapp/src/helpers/getRemoteConfig.ts @@ -1,7 +1,6 @@ -import axios from 'axios' -import localDeployment from '../../../contracts/.soroban/testnet.contracts.json'; import { configFile } from '@/constants/constants'; const isLocal = process.env.NEXT_PUBLIC_IS_LOCAL +const localDeployment = require('../../../contracts/.soroban/deployments.json') export const getRemoteConfig = async (network: string) => { if(isLocal === 'true') { return localDeployment