We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 347dd4b commit 7155759Copy full SHA for 7155759
src/functions/find-items.ts
@@ -20,7 +20,7 @@ export function findItems(response: any, temp: any) {
20
const result = [];
21
// Adding all found results
22
result.push(
23
- response.included.find((item: any) => (Number(item.id) === Number(temp.id)) &&
+ response.included.find((item: any) => (String(item.id) === String(temp.id)) &&
24
(String(item.type) === String(temp.type))),
25
);
26
return result;
0 commit comments