Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Leblow committed Nov 29, 2023
1 parent 8c1853e commit 1aac189
Showing 1 changed file with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,16 @@ describe('verifyMessage saga test', () => {

aliceCsr = alice.userCsr?.userCsr || ''

store.dispatch(communitiesActions.updateCommunityData(
{
id: community.id,
// null/undefined type mismatch here. Might make things easier
// to make it consistent.
ownerCertificate: alice.userCertificate || undefined,
}
))
store.dispatch(
communitiesActions.updateCommunityData(
{
id: community.id,
// null/undefined type mismatch here. Might make things easier
// to make it consistent.
ownerCertificate: alice.userCertificate || undefined,
}
)
)

bob = await factory.create<ReturnType<typeof identityActions.addNewIdentity>['payload']>('Identity', {
id: community.id,
Expand Down

0 comments on commit 1aac189

Please sign in to comment.