File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 33## 4.9.1
44
55### Fixes
6-
6+
7+ - Fixed catalyst fund name ([ PR 2946] ( https://github.com/input-output-hk/daedalus/pull/2946 ) )
78- Fixed macOS installer on Monterey 12.3 ([ PR 2929] ( https://github.com/input-output-hk/daedalus/pull/2929 ) )
89
910### Chores
Original file line number Diff line number Diff line change @@ -2944,9 +2944,13 @@ export default class AdaApi {
29442944 catalystFund,
29452945 } ) ;
29462946
2947+ const fundNumber =
2948+ Number ( catalystFund . fund_name ?. match ( / \d + / ) ?. [ 0 ] ) ||
2949+ catalystFund . id + 1 ;
2950+
29472951 return {
29482952 current : {
2949- number : catalystFund . id + 1 ,
2953+ number : fundNumber ,
29502954 startTime : new Date ( catalystFund . fund_start_time ) ,
29512955 endTime : new Date ( catalystFund . fund_end_time ) ,
29522956 resultsTime : new Date (
@@ -2957,7 +2961,7 @@ export default class AdaApi {
29572961 ) ,
29582962 } ,
29592963 next : {
2960- number : catalystFund . id + 2 ,
2964+ number : fundNumber + 1 ,
29612965 startTime : new Date ( catalystFund . next_fund_start_time ) ,
29622966 registrationSnapshotTime : new Date (
29632967 catalystFund . next_registration_snapshot_time
You can’t perform that action at this time.
0 commit comments