Skip to content

Commit

Permalink
feat: remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Space-Bean committed Jun 13, 2024
1 parent 3cd46b3 commit 1cb9173
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion projects/dex-ui/src/components/Create/CreateWellStep3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ const NameAndSymbolForm = () => {

const onSubmit = async (values: WellDetailsFormValues) => {
const valid = await methods.trigger();
console.log("valid", valid);
if (!valid) return;
setStep3({ ...values, goNext: true });
};
Expand Down
1 change: 0 additions & 1 deletion projects/dex-ui/src/components/Create/CreateWellStep4.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,6 @@ const SaltForm = () => {
message: "Salt must be >= 1 when seeding liquidity"
},
validate: (formValue) => {
console.log("formValue: ", formValue);
if (formValue && !Number.isInteger(Number(formValue))) {
return "Salt must be an integer";
}
Expand Down

0 comments on commit 1cb9173

Please sign in to comment.