Skip to content

Commit

Permalink
Fix verify link and bet amount
Browse files Browse the repository at this point in the history
  • Loading branch information
IanPhilips committed Sep 17, 2024
1 parent af1c1a7 commit bf80b76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/src/api/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export const API = (_apiTypeCheck = {
props: z
.object({
contractId: z.string(),
amount: z.number().gte(1),
amount: z.number().gte(0.01),
replyToCommentId: z.string().optional(),
limitProb: z.number().gte(0.01).lte(0.99).optional(),
expiresAt: z.number().optional(),
Expand Down
2 changes: 1 addition & 1 deletion web/components/twomba/toggle-verify-callout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export function VerifyButton(props: { className?: string }) {
const { className } = props
return (
<Link
href={'gidx/register'}
href={'/gidx/register'}
className={clsx(
buttonClass('md', 'gradient-pink'),
'w-full font-semibold',
Expand Down

0 comments on commit bf80b76

Please sign in to comment.