Feature/include unavailable data in allocations by market chart (#2190)

* Include unavailable data in allocations by market chart

* Update changelog
This commit is contained in:
Thomas Kaul
2023-07-28 20:20:08 +02:00
committed by GitHub
parent cef7fa79de
commit d4fea075af
8 changed files with 128 additions and 64 deletions

View File

@@ -4,4 +4,5 @@ export type MarketAdvanced =
| 'europe'
| 'japan'
| 'northAmerica'
| 'otherMarkets';
| 'otherMarkets'
| 'UNKNOWN';

View File

@@ -1 +1,5 @@
export type Market = 'developedMarkets' | 'emergingMarkets' | 'otherMarkets';
export type Market =
| 'developedMarkets'
| 'emergingMarkets'
| 'otherMarkets'
| 'UNKNOWN';