Skip to content

Commit

Permalink
Fix snapshot type error
Browse files Browse the repository at this point in the history
  • Loading branch information
mmahdigh committed Jun 28, 2024
1 parent 0223a0f commit 027c113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/badges/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export type RawSnapshotPoint = {
| 'null';
};

export const snapshotPoints = [...productionSnapshot, ...testAddresses]
export const snapshotPoints = [...productionSnapshot, ...testAddresses] as RawSnapshotPoint[]

const testAddresses = process.env.NODE_ENV === "production" ? [] : /* testing addresses */
[{
Expand Down

0 comments on commit 027c113

Please sign in to comment.