From 178cbfaf18100e5e1ffe7bd1900faf4e08ded37c Mon Sep 17 00:00:00 2001 From: Asier Isayas Date: Mon, 12 Jan 2026 10:25:47 -0800 Subject: [PATCH] nit --- .../ThroughputBucketsComponent.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Explorer/Controls/Settings/SettingsSubComponents/ThroughputInputComponents/ThroughputBucketsComponent.tsx b/src/Explorer/Controls/Settings/SettingsSubComponents/ThroughputInputComponents/ThroughputBucketsComponent.tsx index 41828861b..2434713be 100644 --- a/src/Explorer/Controls/Settings/SettingsSubComponents/ThroughputInputComponents/ThroughputBucketsComponent.tsx +++ b/src/Explorer/Controls/Settings/SettingsSubComponents/ThroughputInputComponents/ThroughputBucketsComponent.tsx @@ -64,10 +64,10 @@ export const ThroughputBucketsComponent: FC = ( }; const getThroughputBucketOptions = (): IDropdownOption[] => { - const noDefaultThroughputBucketSelected: IDropdownOption[] = [ - { key: NoDefaultThroughputSelectedKey, text: "No Default Throughput Bucket Selected" }, - ]; - + const noDefaultThroughputBucketSelected: IDropdownOption = { + key: NoDefaultThroughputSelectedKey, + text: "No Default Throughput Bucket Selected", + }; const throughputBucketOptions: IDropdownOption[] = throughputBuckets .filter((bucket) => bucket.maxThroughputPercentage !== 100) .map((bucket) => ({ @@ -75,7 +75,7 @@ export const ThroughputBucketsComponent: FC = ( text: `Bucket ${bucket.id} - ${bucket.maxThroughputPercentage}%`, })); - return [...noDefaultThroughputBucketSelected, ...throughputBucketOptions]; + return [noDefaultThroughputBucketSelected, ...throughputBucketOptions]; }; const [throughputBuckets, setThroughputBuckets] = useState(getThroughputBuckets(currentBuckets));