-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PREVIEW: IGP interaction refactor #98
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -27,7 +27,6 @@ | |||
"@typescript-eslint/ban-ts-comment": ["off"], | |||
"@typescript-eslint/explicit-module-boundary-types": ["off"], | |||
"@typescript-eslint/no-explicit-any": ["off"], | |||
"@typescript-eslint/no-floating-promises": ["error"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed this because the latest formik version makes a bunch of benign form interactions async. They did that to support react ssr/suspense.
@@ -31,7 +31,7 @@ | |||
"bignumber.js": "^9.1.1", | |||
"buffer": "^6.0.3", | |||
"cosmjs-types": "^0.9.0", | |||
"formik": "^2.2.9", | |||
"formik": "^2.4.5", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Upgrading to enable async form validation
@@ -506,103 +486,6 @@ function ReviewDetails({ visible, tokenRoutes }: { visible: boolean; tokenRoutes | |||
); | |||
} | |||
|
|||
function validateFormValues( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved to it's own file and reorganized (see below)
DO NOT MERGE. Using this branch for preview build testing.
Merge #101 instead
Related: hyperlane-xyz/hyperlane-monorepo#3107