Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
brightiron committed Jul 23, 2024
1 parent d20ea8a commit a86d5c4
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/views/Range/hooks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,6 @@ export const PriceHistory = () => {
return { data, isFetched, isLoading };
};

function getLastTenIndices(currentIndex: number): number[] {
const result: number[] = [];
for (let i = 0; i < 10; i++) {
result.unshift((currentIndex - i + 100) % 100);
}
return result;
}

/**
* Returns the current price of the Operator at the given address
*/
Expand Down

0 comments on commit a86d5c4

Please sign in to comment.