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