Merge branch 'master' into simon/add-4y

This commit is contained in:
wiz
2023-03-07 19:00:27 +09:00
committed by GitHub
80 changed files with 3930 additions and 2945 deletions

View File

@@ -89,7 +89,7 @@ export class PriceService {
return this.singlePriceObservable$.pipe(
map((conversion) => {
if (conversion.prices.length <= 0) {
return this.getEmptyPrice();
return undefined;
}
return {
price: {
@@ -113,7 +113,7 @@ export class PriceService {
return this.priceObservable$.pipe(
map((conversion) => {
if (!blockTimestamp) {
if (!blockTimestamp || !conversion) {
return undefined;
}