Skip to content

Commit

Permalink
testing do not remove special chars
Browse files Browse the repository at this point in the history
  • Loading branch information
nacho9900 committed Jul 16, 2024
1 parent ce32449 commit 0db82b2
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions packages/drops/src/DropsClient.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
import { CompassProvider, DropApiProvider } from '@poap-xyz/providers';
import {
PaginatedResult,
nextCursor,
createBetweenFilter,
createInFilter,
Order,
isNumeric,
removeSpecialCharacters,
createOrderBy,
createBoolFilter,
createInFilter,
createLikeFilter,
createOrderBy,
isNumeric,
nextCursor,
Order,
PaginatedResult,
toPOAPDate,
} from '@poap-xyz/utils';
import { Drop } from './domain/Drop';
Expand Down Expand Up @@ -116,7 +115,7 @@ export class DropsClient {
offset,
...(isNumeric(search) && { orderBy: { id: Order.ASC } }),
args: {
search: removeSpecialCharacters(search),
search,
},
};

Expand Down

0 comments on commit 0db82b2

Please sign in to comment.