diff --git a/src/components/views/messages/SenderProfile.tsx b/src/components/views/messages/SenderProfile.tsx index 330afdfb5772..79cbb7d3aaab 100644 --- a/src/components/views/messages/SenderProfile.tsx +++ b/src/components/views/messages/SenderProfile.tsx @@ -119,8 +119,7 @@ export default class SenderProfile extends React.Component { { UserIdentifier.getDisplayUserIdentifier( mxid, { withDisplayName: true, roomId: mxEvent.getRoomId() }, - ) - } + ) } ); } diff --git a/src/customisations/UserIdentifier.ts b/src/customisations/UserIdentifier.ts index f81737586dc7..3eacc36684e2 100644 --- a/src/customisations/UserIdentifier.ts +++ b/src/customisations/UserIdentifier.ts @@ -35,7 +35,7 @@ export interface IUserIdentifierCustomisations { } // A real customisation module will define and export one or more of the -// customisation points that make up `IAliasCustomisations`. +// customisation points that make up `IUserIdentifierCustomisations`. export default { getDisplayUserIdentifier, } as IUserIdentifierCustomisations;