Skip to content

Commit

Permalink
fix get identities endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksandr Raspopov committed Dec 13, 2024
1 parent ae54d59 commit 73bd9e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/adapters/api/identities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export async function getIdentities({
url: `${API_VERSION}/identities`,
});

return buildSuccessResponse(getListParser(identityParser).parse(response.data || []));
return buildSuccessResponse(getListParser(identityParser).parse(response.data));
} catch (error) {
return buildErrorResponse(error);
}
Expand Down

0 comments on commit 73bd9e7

Please sign in to comment.