Skip to content

Commit

Permalink
fix: pool simulator menu
Browse files Browse the repository at this point in the history
  • Loading branch information
luizakp committed Aug 27, 2024
1 parent 3f65f80 commit b8ed78d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const POOL_TYPES_MAPPER = {
name: "Meta Stable",
defaultParams: {
swapFee: 0.01,
amp: 5,
ampFactor: 5,
},
},
GyroE: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ export const PoolParamsForm = forwardRef<unknown, PoolParamsFormProps>(
onSubmit={(data) => onSubmit(createPayload(poolType, data))}
id="initial-data-form"
>
<div className="flex flex-col gap-4">
<div className="flex flex-col gap-4 px-6">
{inputMapper[poolType].map((input) => {
const defaultValue = input.transformFromDataToForm(
data.poolParams?.[input.name],
Expand Down

0 comments on commit b8ed78d

Please sign in to comment.