Skip to content

Commit

Permalink
import fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lendihop committed Sep 29, 2023
1 parent 6d24222 commit 21b79f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/pages/BuyWithCreditCard/BuyWithCreditCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import { getAssetSymbolToDisplay } from 'lib/buy-with-credit-card/get-asset-symb
import { TopUpInputInterface } from 'lib/buy-with-credit-card/topup.interface';
import { shouldShowFieldError } from 'lib/form/should-show-field-error';
import { t, T, toLocalFormat } from 'lib/i18n';
import { FIAT_ICONS_SRC } from 'lib/icons';
import { useInterval } from 'lib/ui/hooks';

import { FIAT_ICONS_SRC } from '../../../lib/icons';
import { BuyWithCreditCardSelectors } from './BuyWithCreditCard.selectors';
import { useAllCryptoCurrencies } from './hooks/use-all-crypto-currencies';
import { useAllFiatCurrencies } from './hooks/use-all-fiat-currencies';
Expand Down
4 changes: 2 additions & 2 deletions src/lib/apis/temple/endpoints/templewallet.api.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import axios from 'axios';

//import { EnvVars } from 'lib/env';
import { EnvVars } from 'lib/env';

export const templeWalletApi = axios.create({ baseURL: new URL('/api', 'http://localhost:3000').href });
export const templeWalletApi = axios.create({ baseURL: new URL('/api', EnvVars.TEMPLE_WALLET_API_URL).href });

0 comments on commit 21b79f2

Please sign in to comment.