Skip to content

Commit

Permalink
Change max term from 36 to 12 (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
hackfisher authored Oct 22, 2024
1 parent 24eb428 commit b39d3b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/deposit/_components/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { error } from '@/components/toast';

import type { SharedSelection } from '@nextui-org/react';

const terms = new Array(36).fill(0).map((_, index) => index + 1);
const terms = new Array(12).fill(0).map((_, index) => index + 1);

const Deposit = () => {
const [hash, setHash] = useState<`0x${string}` | undefined>(undefined);
Expand Down

0 comments on commit b39d3b9

Please sign in to comment.