Skip to content

Commit

Permalink
Fix copy paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
saidam90 committed Sep 3, 2024
1 parent 1f7ba60 commit af6d625
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,8 @@ export function getLocalStoragePaginationValue(id?: string) {
return undefined;
}

// TODO: Update input and return types to `PairInfo[]`. Currently using `any` // due to unresolved issues. Investigate the cause of the problem.
// TODO: Update input and return types to `PairInfo[]`. Currently using `any`
// due to unresolved issues. Investigate the cause of the problem.
export function searchPairs(query: string, pairsList: any): any {
const searchQuery = query.trim().toLowerCase().replace(/\s+/g, " ");

Expand Down

0 comments on commit af6d625

Please sign in to comment.