-
Notifications
You must be signed in to change notification settings - Fork 5k
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
close details when button is pressed #8694
Conversation
Builds ready [d35dd57]
Page Load Metrics (650 ± 29 ms)
|
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.
What became of all the transactionGroup
stuff?
@rekmarks its now encapsulated in the transaction-list-item file, which calls useRetryTransaction and useCancelTransaction .. its no longer necessary to pass in a transaction id. |
metamask-extension/ui/app/hooks/useRetryTransaction.js Lines 37 to 59 in 88bed71
|
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.
LGTM!
* origin/develop: (689 commits) Implement asset page (#8696) fix crash on signature request (#8709) Fix accounts menu styling (#8707) Delete docs/porting_to_new_environment.md (#8704) Remove unused `getToErrorObject` parameters (#8705) hide connected-status on metamask ext (#8703) Stop adding permissions middleware to trusted connections (#8701) Use `send` state for send flow token (#8695) do not display extension id in connection modal (#8699) Fix tab content disappearing during scrolling on macOS Firefox (#8702) close details when button is pressed (#8694) Refactor token selectors (#8671) Update eth_accounts permission description (#8693) Extract selected token from token input (#8692) Fix propType for Home defaultHomeActiveTabName (#8683) Fix create account form styling (#8689) Remove unused `getSelectedTokenAssetImage` selector (#8691) Remove `getTxParams` (#8676) do not show account mismatch alert on details (#8678) Fix connect hardware styling (#8680) ...
Button behavior was broken by redesign work. Updated the details view to first call the onRetry or onCancel props and pass in the click event which it expect, then call the onClose prop to close the popover so that there aren't two modal-like experiences active at the same time. This behavior will be updated when we do the details redesign.
fixes #8684