File tree Expand file tree Collapse file tree 4 files changed +76
-87
lines changed
src/components/CertifyCardanoTransactionsModal Expand file tree Collapse file tree 4 files changed +76
-87
lines changed Original file line number Diff line number Diff line change 52
52
rm package-lock.json || true
53
53
54
54
upgrade : clean install
55
+ # Note: eslint versions 9 or up are not compatible with versions 14.2+ of eslint-config-next
56
+ # Todo: switch to eslint-config-next@latest when a compatible version is released
55
57
npm install \
56
58
@popperjs/core@latest \
57
59
@reduxjs/toolkit@latest \
@@ -66,7 +68,7 @@ upgrade: clean install
66
68
react-redux@latest \
67
69
@testing-library/jest-dom@latest \
68
70
@testing-library/react@latest \
69
- eslint@latest \
71
+ eslint@^8.57.0 \
70
72
eslint-config-next@latest \
71
73
fantasticon@latest \
72
74
jest@latest \
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mithril-explorer" ,
3
- "version" : " 0.7.3 " ,
3
+ "version" : " 0.7.4 " ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"dev" : " next dev" ,
15
15
"dependencies" : {
16
16
"@mithril-dev/mithril-client-wasm" : " file:../mithril-client-wasm/pkg" ,
17
17
"@popperjs/core" : " ^2.11.8" ,
18
- "@reduxjs/toolkit" : " ^2.2.5 " ,
18
+ "@reduxjs/toolkit" : " ^2.2.6 " ,
19
19
"bootstrap" : " ^5.3.3" ,
20
20
"bootstrap-icons" : " ^1.11.3" ,
21
21
"chart.js" : " ^4.4.3" ,
22
- "next" : " ^14.2.4 " ,
22
+ "next" : " ^14.2.5 " ,
23
23
"react" : " ^18.3.1" ,
24
- "react-bootstrap" : " ^2.10.2 " ,
24
+ "react-bootstrap" : " ^2.10.4 " ,
25
25
"react-chartjs-2" : " ^5.2.0" ,
26
26
"react-dom" : " ^18.3.1" ,
27
27
"react-redux" : " ^9.1.2"
30
30
"@testing-library/jest-dom" : " ^6.4.6" ,
31
31
"@testing-library/react" : " ^16.0.0" ,
32
32
"eslint" : " ^8.57.0" ,
33
- "eslint-config-next" : " ^14.2.4 " ,
33
+ "eslint-config-next" : " ^14.2.5 " ,
34
34
"fantasticon" : " ^3.0.0" ,
35
35
"jest" : " ^29.7.0" ,
36
36
"jest-environment-jsdom" : " ^29.7.0" ,
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ export default function CertifyCardanoTransactionsModal({
45
45
setIsCertificateChainValid ( true ) ;
46
46
setCertificate ( undefined ) ;
47
47
setCurrentStep ( validationSteps . ready ) ;
48
+ setCurrentError ( undefined ) ;
48
49
49
50
if ( transactionHashes ?. length > 0 ) {
50
51
fetchGenesisVerificationKey ( currentAggregator )
You can’t perform that action at this time.
0 commit comments