Skip to content

Commit

Permalink
fix: typo in upgrades type
Browse files Browse the repository at this point in the history
  • Loading branch information
rictorlome committed Nov 14, 2024
1 parent f25ea16 commit db80e73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/fixtures/info.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
export const upgradesInfo = {
apricotPhaselTime: '2020-12-05T05:00:00Z',
import type { GetUpgradesInfoResponse } from '../info';

export const upgradesInfo: GetUpgradesInfoResponse = {
apricotPhase1Time: '2020-12-05T05:00:00Z',
apricotPhase2Time: '2020-12-05T05:00:00Z',
apricotPhase3Time: '2020-12-05T05:00:00Z',
apricotPhase4Time: '2020-12-05T05:00:00Z',
Expand Down
2 changes: 1 addition & 1 deletion src/info/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export type isBootstrapped = {
};

export type GetUpgradesInfoResponse = {
apricotPhaselTime: string;
apricotPhase1Time: string;
apricotPhase2Time: string;
apricotPhase3Time: string;
apricotPhase4Time: string;
Expand Down

0 comments on commit db80e73

Please sign in to comment.