diff --git a/src/Explorer/Controls/Settings/SettingsSubComponents/ThroughputInputComponents/ThroughputBucketsComponent.tsx b/src/Explorer/Controls/Settings/SettingsSubComponents/ThroughputInputComponents/ThroughputBucketsComponent.tsx index 32d203c33..f3c644070 100644 --- a/src/Explorer/Controls/Settings/SettingsSubComponents/ThroughputInputComponents/ThroughputBucketsComponent.tsx +++ b/src/Explorer/Controls/Settings/SettingsSubComponents/ThroughputInputComponents/ThroughputBucketsComponent.tsx @@ -34,8 +34,9 @@ export const ThroughputBucketsComponent: FC = ( const [throughputBuckets, setThroughputBuckets] = useState(getThroughputBuckets(currentBuckets)); useEffect(() => { - const isChanged = isDirty(currentBuckets, getThroughputBuckets(throughputBucketsBaseline)); - isChanged && setThroughputBuckets(getThroughputBuckets(currentBuckets)); + setThroughputBuckets(getThroughputBuckets(currentBuckets)); + onSaveableChange(false); + onDiscardableChange(false); }, [currentBuckets]); useEffect(() => {