dont' return time for pending claim
This commit is contained in:
parent
6f1e3b054f
commit
e89d1646ef
2 changed files with 2 additions and 2 deletions
2
dist/bundle.js
vendored
2
dist/bundle.js
vendored
|
@ -5115,7 +5115,7 @@ var makeSelectBlockDate = exports.makeSelectBlockDate = function makeSelectBlock
|
|||
|
||||
// Pending claim
|
||||
if (block < 1) {
|
||||
return new Date();
|
||||
return null;
|
||||
}
|
||||
|
||||
var difference = latestBlock - block;
|
||||
|
|
|
@ -225,7 +225,7 @@ export const makeSelectBlockDate = (block) =>
|
|||
|
||||
// Pending claim
|
||||
if (block < 1) {
|
||||
return new Date();
|
||||
return null;
|
||||
}
|
||||
|
||||
const difference = latestBlock - block;
|
||||
|
|
Loading…
Reference in a new issue