fix(pagination): keys

This commit is contained in:
Hristo Terezov 2021-06-23 13:53:56 -05:00
parent 2d319d18c3
commit 07a69ba040
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ class Filmstrip extends PureComponent <Props> {
return `empty-${index}`; return `empty-${index}`;
} }
return _remoteParticipants[_remoteParticipantsLength - index - 1]; return _remoteParticipants[index];
} }
_gridItemKey: Object => string; _gridItemKey: Object => string;