Skip to content

Commit

Permalink
fix gpu range sliders for AMD
Browse files Browse the repository at this point in the history
  • Loading branch information
aarron-lee committed Sep 28, 2024
1 parent 752144d commit 1d11ac2
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/components/molecules/Gpu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,11 @@ const Gpu = () => {
</DeckyRow>
)}

{gpuMode === GpuModes.RANGE ||
(isIntel && (
<DeckyRow>
<GpuRangeSliders showSeparator />
</DeckyRow>
))}
{(gpuMode === GpuModes.RANGE || isIntel) && (
<DeckyRow>
<GpuRangeSliders showSeparator />
</DeckyRow>
)}
{gpuMode === GpuModes.FIXED && (
<DeckyRow>
<GpuFixedSlider />
Expand Down

0 comments on commit 1d11ac2

Please sign in to comment.