fix: format code

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-07-19 12:24:51 +02:00
parent d75d406e67
commit 34bf8f16b1
14 changed files with 46 additions and 22 deletions

View file

@ -22,6 +22,6 @@ export async function getFirstIdentityFromUser(
return undefined;
}
return identities.find(
(aIdentity) => aIdentity.providerType === providerType,
(aIdentity) => aIdentity.providerType === (providerType as string),
);
}