Skip to content

Commit db80e73

Browse files
committed
fix: typo in upgrades type
1 parent f25ea16 commit db80e73

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/fixtures/info.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
export const upgradesInfo = {
2-
apricotPhaselTime: '2020-12-05T05:00:00Z',
1+
import type { GetUpgradesInfoResponse } from '../info';
2+
3+
export const upgradesInfo: GetUpgradesInfoResponse = {
4+
apricotPhase1Time: '2020-12-05T05:00:00Z',
35
apricotPhase2Time: '2020-12-05T05:00:00Z',
46
apricotPhase3Time: '2020-12-05T05:00:00Z',
57
apricotPhase4Time: '2020-12-05T05:00:00Z',

src/info/model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export type isBootstrapped = {
7777
};
7878

7979
export type GetUpgradesInfoResponse = {
80-
apricotPhaselTime: string;
80+
apricotPhase1Time: string;
8181
apricotPhase2Time: string;
8282
apricotPhase3Time: string;
8383
apricotPhase4Time: string;

0 commit comments

Comments
 (0)