From c1342513212abdc3eb89f831aeffe546ee8828a6 Mon Sep 17 00:00:00 2001 From: Joseph Tary Date: Thu, 14 Sep 2023 23:18:02 -0700 Subject: [PATCH] tech: remove some debugging --- web/src/components/SdlConfiguration/SdlConfiguration.tsx | 2 -- web/src/hooks/useDeploymentData.ts | 5 ----- 2 files changed, 7 deletions(-) diff --git a/web/src/components/SdlConfiguration/SdlConfiguration.tsx b/web/src/components/SdlConfiguration/SdlConfiguration.tsx index 0c44b9a..9923948 100644 --- a/web/src/components/SdlConfiguration/SdlConfiguration.tsx +++ b/web/src/components/SdlConfiguration/SdlConfiguration.tsx @@ -60,8 +60,6 @@ export const SdlConfiguration: React.FC = ({ // hide the GPU section for now const showGpu = false; - console.log('rendering SdlConfiguration'); - return ( {progressVisible && ( diff --git a/web/src/hooks/useDeploymentData.ts b/web/src/hooks/useDeploymentData.ts index d4ff098..75fa3bb 100644 --- a/web/src/hooks/useDeploymentData.ts +++ b/web/src/hooks/useDeploymentData.ts @@ -69,11 +69,6 @@ export default function useDeploymentData(owner: string) { const providerInfo = await fetchProviderInfo({ owner: lease.leaseId?.provider }, rpcEndpoint); const providerUrl = providerInfo?.provider?.hostUri; - const long = new Long(lease.leaseId.dseq); - - console.log(lease.leaseId); - console.log(LeaseID.toJSON(lease.leaseId) as any); - return providerUrl && queryLeaseStatus(LeaseID.toJSON(lease.leaseId) as any, providerUrl); } },