Skip to content

Commit

Permalink
update average length limits
Browse files Browse the repository at this point in the history
  • Loading branch information
ThyeeZz committed Dec 27, 2024
1 parent 6b5c476 commit 29aee6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parts/sizing/formSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default function FormSection(props: {

const handleAverageLengthChange = (e: any) => {
const length = Number(e.target.value) || 0;
if (length >= 10000000) {
if (length >= 60000000) {
return;
}
setForm({
Expand Down Expand Up @@ -250,7 +250,7 @@ export default function FormSection(props: {
<TooltipProvider>
<Tooltip delayDuration={0}>
<TooltipContent className="w-[280px]">
[0, 10,000,000]
[0, 60,000,000]
<TooltipArrow />
</TooltipContent>
<TooltipTrigger
Expand Down

0 comments on commit 29aee6b

Please sign in to comment.