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

Commit

Permalink
currentMin, not currentFrequency
Browse files Browse the repository at this point in the history
  • Loading branch information
fewtarius committed Sep 22, 2024
1 parent 0281996 commit 58352d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/atoms/GpuRangeSliders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const GpuRangeSliders: FC<{ showSeparator: boolean }> = ({ showSeparator }) => {
);
const { setMinFreq, setMaxFreq } = useSetGpuFrequency();

if (!(min && max) || currentFrequency < '1') {
if (!(min && max) || currentMin < '1') {
return <span>Unsupported on this device.</span>;
}

Expand Down

0 comments on commit 58352d5

Please sign in to comment.