Skip to content

Commit

Permalink
fix(redux-store): credential and proof selector by id (#407)
Browse files Browse the repository at this point in the history
  • Loading branch information
berendsliedrecht authored Jul 23, 2021
1 parent e6d0df9 commit fd8933d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const CredentialsSelectors = {
/**
* Selector that fetches a CredentialRecord by id from the state.
*/
connectionRecordByIdSelector: (credentialRecordId: string) => (state: PartialCredentialState) =>
credentialRecordByIdSelector: (credentialRecordId: string) => (state: PartialCredentialState) =>
state.credentials.credentials.records.find((x) => x.id === credentialRecordId),
}

Expand Down
2 changes: 1 addition & 1 deletion packages/redux-store/src/slices/proofs/proofsSelectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const ProofsSelectors = {
/**
* Selector that fetches a ProofRecord by id from the state.
*/
connectionRecordByIdSelector: (proofRecordId: string) => (state: PartialProofsState) =>
proofRecordByIdSelector: (proofRecordId: string) => (state: PartialProofsState) =>
state.proofs.proofs.records.find((x) => x.id === proofRecordId),
}

Expand Down

0 comments on commit fd8933d

Please sign in to comment.