From ef74b56f4b3348d9969c06cb5eab0f3f34213398 Mon Sep 17 00:00:00 2001 From: Joe Schnetzler Date: Mon, 11 Sep 2023 06:46:44 +0000 Subject: [PATCH] Edit env var --- packages/ui/src/store/balances.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui/src/store/balances.ts b/packages/ui/src/store/balances.ts index 9ffc60c..4d2abba 100644 --- a/packages/ui/src/store/balances.ts +++ b/packages/ui/src/store/balances.ts @@ -3,8 +3,8 @@ import type { Chain } from '../../../snap/src/types/chains'; import { chains } from './chains'; import type { CoinIBC } from '../utils/ibc'; -if (!import.meta.env.VITE_BALANCE_FUNCTION_URL) { - throw new Error("VITE_BALANCE_FUNCTION_URL not set..."); +if (!import.meta.env.VITE_DENO_SERVERLESS_URL) { + throw new Error("VITE_DENO_SERVERLESS_URL not set..."); } export const denoUrl = import.meta.env.VITE_DENO_SERVERLESS_URL;