diff --git a/src/components/QuotaSelector/index.tsx b/src/components/QuotaSelector/index.tsx index ba2700568..3ccb2021d 100644 --- a/src/components/QuotaSelector/index.tsx +++ b/src/components/QuotaSelector/index.tsx @@ -61,13 +61,11 @@ const QuotaSelector: React.FC = ({ - - - - - - - + {[...Array(100)].map((_item, i) => ( + + ))} ), quotaDays: ( @@ -77,12 +75,11 @@ const QuotaSelector: React.FC = ({ onChange={(e) => setQuotaDays(Number(e.target.value))} disabled={isDisabled} > - - - - - - + {[...Array(100)].map((_item, i) => ( + + ))} ), }