Fixes lint and TS warning

This commit is contained in:
Josh Perez 2020-12-08 19:48:02 -05:00 committed by GitHub
parent 456c51308f
commit e8e43a53b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -168,7 +168,9 @@ story.add('Group Call - call full', () => {
const props = createProps({
isGroupCall: true,
isCallFull: true,
peekedParticipants: ['Sam', 'Cayce'].map(fakePeekedParticipant),
peekedParticipants: ['Sam', 'Cayce'].map(title =>
fakePeekedParticipant({ title })
),
});
return <CallingLobby {...props} />;
});