Skip to content

Commit d2d7dc3

Browse files
committed
fix(pricePerPercent): do not fetch hypercerts by lowercased ID
1 parent 82d5468 commit d2d7dc3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/services/graphql/resolvers/orderResolver.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,7 @@ class OrderResolver {
9494

9595
// Get unique hypercert IDs and convert to lowercase once
9696
const allHypercertIds = _.uniq(
97-
data.map((order) =>
98-
(order.hypercert_id as unknown as string)?.toLowerCase(),
99-
),
97+
data.map((order) => order.hypercert_id as unknown as string),
10098
);
10199

102100
// Fetch hypercerts in parallel with any other async operations

0 commit comments

Comments
 (0)