Skip to content

Commit

Permalink
fix: fix liquidity form
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhar-shubhendu committed Aug 24, 2021
1 parent 6914fb6 commit e1b857d
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions src/design-system/organisms/LiquidityForm/LiquidityForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -444,17 +444,10 @@ export const LiquidityForm: React.FC<LiquidityFormProps> = ({
],
);

const initialFormValues: LiquidityValue = initialValues
? {
...initialValues,
operationType,
minYesToken: 0,
minNoToken: 0,
}
: {
...formValues,
operationType,
};
const initialFormValues: LiquidityValue = {
...formValues,
operationType,
};

return (
<>
Expand Down

1 comment on commit e1b857d

@vercel
Copy link

@vercel vercel bot commented on e1b857d Aug 24, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.