File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ const ProposalHeader: React.FC<ProposalHeaderProps> = ({ proposal }) => {
61
61
< div className = "flex items-center" >
62
62
< span className = "w-8" > </ span >
63
63
< span className = "text-neutral-500" >
64
- In { getSimpleRelativeTimeFromDate ( dayjs ( Number ( proposal . parameters . startDate ) * 1000 ) ) } minutes
64
+ In { getSimpleRelativeTimeFromDate ( dayjs ( Number ( proposal . parameters . startDate ) * 1000 ) ) }
65
65
</ span >
66
66
</ div >
67
67
) }
@@ -79,7 +79,7 @@ const ProposalHeader: React.FC<ProposalHeaderProps> = ({ proposal }) => {
79
79
< div className = "flex items-center" >
80
80
< span className = "w-8" > </ span >
81
81
< span className = "text-neutral-500" >
82
- In { getSimpleRelativeTimeFromDate ( dayjs ( Number ( proposal . parameters . endDate ) * 1000 ) ) } minutes
82
+ In { getSimpleRelativeTimeFromDate ( dayjs ( Number ( proposal . parameters . endDate ) * 1000 ) ) }
83
83
</ span >
84
84
</ div >
85
85
) }
Original file line number Diff line number Diff line change @@ -199,6 +199,7 @@ export const MaciProvider = ({ children }: { children: ReactNode }) => {
199
199
pollWasm : artifacts . wasm as unknown as string ,
200
200
sgDataArg : DEFAULT_SG_DATA ,
201
201
ivcpDataArg : DEFAULT_IVCP_DATA ,
202
+ blocksPerBatch : 1000 ,
202
203
} ) . catch ( ( error ) => {
203
204
if ( error . message . includes ( "0xa3281672" ) ) {
204
205
// 0xa3281672 -> signature of BalanceTooLow()
You can’t perform that action at this time.
0 commit comments