Skip to content
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

Fix: Explorer keep previous error until refresh in cardano transaction certification modal #1824

Merged
merged 4 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion mithril-explorer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ clean:
rm package-lock.json || true

upgrade: clean install
# Note: eslint versions 9 or up are not compatible with versions 14.2+ of eslint-config-next
# Todo: switch to eslint-config-next@latest when a compatible version is released
npm install \
@popperjs/core@latest \
@reduxjs/toolkit@latest \
Expand All @@ -66,7 +68,7 @@ upgrade: clean install
react-redux@latest \
@testing-library/jest-dom@latest \
@testing-library/react@latest \
eslint@latest \
eslint@^8.57.0 \
eslint-config-next@latest \
fantasticon@latest \
jest@latest \
Expand Down
148 changes: 67 additions & 81 deletions mithril-explorer/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions mithril-explorer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mithril-explorer",
"version": "0.7.3",
"version": "0.7.4",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -15,13 +15,13 @@
"dependencies": {
"@mithril-dev/mithril-client-wasm": "file:../mithril-client-wasm/pkg",
"@popperjs/core": "^2.11.8",
"@reduxjs/toolkit": "^2.2.5",
"@reduxjs/toolkit": "^2.2.6",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"chart.js": "^4.4.3",
"next": "^14.2.4",
"next": "^14.2.5",
"react": "^18.3.1",
"react-bootstrap": "^2.10.2",
"react-bootstrap": "^2.10.4",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2"
Expand All @@ -30,7 +30,7 @@
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"eslint-config-next": "^14.2.5",
"fantasticon": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export default function CertifyCardanoTransactionsModal({
setIsCertificateChainValid(true);
setCertificate(undefined);
setCurrentStep(validationSteps.ready);
setCurrentError(undefined);

if (transactionHashes?.length > 0) {
fetchGenesisVerificationKey(currentAggregator)
Expand Down
Loading