Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Commit

Permalink
fix: hide gpu
Browse files Browse the repository at this point in the history
  • Loading branch information
jtary committed Sep 26, 2023
1 parent 3f82799 commit e97c0b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/SdlConfiguration/SdlConfiguration.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const SdlConfiguration: React.FC<SdlConfigurationProps> = ({
const [getRpcNode] = useRpcNode();
const forbidEditing = configurationType === SdlConfigurationType.Update;
const hasGPU = getRpcNode().networkType === 'testnet';
const showGPU = true;
const showGPU = false;

return (
<React.Fragment>
Expand Down

0 comments on commit e97c0b5

Please sign in to comment.