File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ const generateEmissionsData = () => {
7777 return JSON . stringify ( [ {
7878 emissionHash : 'SampleEmissionHash' ,
7979 unit : 'kgeqCO2' ,
80- CO2e : Math . random ( ) * 100 ,
80+ emissions : Math . random ( ) * 100 ,
8181 effectiveDateStart : '2020-01-01' ,
8282 effectiveDateEnd : '2024-12-31' ,
8383 startUsageAmount : 0 ,
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export type Price = {
3131export type Emission = {
3232 emissionHash : string ;
3333 unit : string ;
34- CO2e : string ;
34+ emissions : string ;
3535 effectiveDateStart : string ;
3636 effectiveDateEnd ?: string ;
3737 startUsageAmount ?: string ;
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ const typeDefs = gql`
2121 type Emission {
2222 emissionHash: String!
2323 unit: String!
24- CO2e : String!
24+ emissions : String!
2525 effectiveDateStart: String
2626 effectiveDateEnd: String
2727 startUsageAmount: String
You can’t perform that action at this time.
0 commit comments