From 82f3d80d18d6aaea732948266575f23f2f8c9fb7 Mon Sep 17 00:00:00 2001 From: Filip-L <67787091+Filip-L@users.noreply.github.com> Date: Mon, 24 Jun 2024 14:27:47 +0200 Subject: [PATCH] Fix wrong link to the application issue (#107) Co-authored-by: Filip Lelek --- src/components/cards/AppInfoCard.tsx | 3 +-- src/config.ts | 4 ---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/components/cards/AppInfoCard.tsx b/src/components/cards/AppInfoCard.tsx index f5fac59..4728be1 100644 --- a/src/components/cards/AppInfoCard.tsx +++ b/src/components/cards/AppInfoCard.tsx @@ -4,7 +4,6 @@ import AccountSelectionDialog from '@/components/ui/ledger-account-select' import { Modal } from '@/components/ui/modal' import ProgressBar from '@/components/ui/progress-bar' import { Spinner } from '@/components/ui/spinner' -import { config } from '@/config' import calculateAmountToRequest from '@/helpers/calculateAmountToRefill' import useApplicationActions from '@/hooks/useApplicationActions' import { useAllocator } from '@/lib/AllocatorProvider' @@ -697,7 +696,7 @@ const AppInfoCard: React.FC = ({

Application Detail

diff --git a/src/config.ts b/src/config.ts index b92148c..ac7e581 100644 --- a/src/config.ts +++ b/src/config.ts @@ -18,8 +18,6 @@ const localConfig = { numberOfWalletAccounts: 5, mnemonic: process.env.NEXT_PUBLIC_MNEMONIC, walletClass: 'LedgerWallet', - githubRepoUrl: - 'https://github.com/filecoin-project/filplus-tooling-backend-test', dmobApiUrl: 'https://api.filplus.d.interplanetary.one/public/api', dmobApiKey: process.env.NEXT_PUBLIC_DMOB_API_KEY ?? '', } @@ -44,8 +42,6 @@ const prodConfig = { numberOfWalletAccounts: 5, mnemonic: process.env.MNEMONIC, walletClass: 'LedgerWallet', - githubRepoUrl: - 'https://github.com/filecoin-project/filecoin-plus-large-datasets', dmobApiUrl: 'https://api.filplus.d.interplanetary.one/public/api', dmobApiKey: process.env.NEXT_PUBLIC_DMOB_API_KEY ?? '', }