From 129add2251c529c83498ce28d98534c253615d3c Mon Sep 17 00:00:00 2001 From: Joseph Tary Date: Thu, 31 Aug 2023 09:52:09 -0700 Subject: [PATCH] fix: temporarly hide ui for gpus --- web/src/components/SdlConfiguration/SdlConfiguration.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/src/components/SdlConfiguration/SdlConfiguration.tsx b/web/src/components/SdlConfiguration/SdlConfiguration.tsx index 3d7e0f9..9923948 100644 --- a/web/src/components/SdlConfiguration/SdlConfiguration.tsx +++ b/web/src/components/SdlConfiguration/SdlConfiguration.tsx @@ -57,6 +57,9 @@ export const SdlConfiguration: React.FC = ({ const forbidEditing = configurationType === SdlConfigurationType.Update; const hasGPU = getRpcNode().networkType === 'testnet'; + // hide the GPU section for now + const showGpu = false; + return ( {progressVisible && ( @@ -200,7 +203,7 @@ export const SdlConfiguration: React.FC = ({ disabled={forbidEditing} /> - {hasGPU && } + {hasGPU && showGpu && }

Ports