fix(client): undefined variable in emoji rain (#20926)

This commit is contained in:
Ramón Souza 2024-08-13 17:00:10 -03:00 committed by GitHub
parent b6b06e714e
commit 9cb0123717
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,7 +24,7 @@ const EmojiRain = ({ reactions }) => {
return;
}
for (i = 0; i < NUMBER_OF_EMOJIS; i++) {
for (let i = 0; i < NUMBER_OF_EMOJIS; i++) {
const initialPosition = {
x: coord.x + coord.width / 8,
y: coord.y + coord.height / 5,