@@ -176,9 +176,7 @@ const StreamContainer = { | |||
gridTemplateColumns: dims[1], | |||
} | |||
return m('.videos', {style}, | |||
m(Video, {username: State.username}), | |||
State.online.filter(username => username != State.username) | |||
.map(username => m(Video, {key: username, username})) | |||
State.online.map(username => m(Video, {key: username, username})) | |||
) | |||
}, | |||
} |